Hey people, i'm trying to load image into WebView, but after all Webview is equal to null.
Source:
wv = (WebView) findViewById(R.id.wv1);
wv.loadData("<img src=\"file://android_asset/icon.png\"></img>123",text/html, UTF-8);
My image is in assets folder. What i'm doing wrong?

