What I have: I\'m loading image from a URL. I simply do (WebView).loadUrl(imageurl, extraheaders)
(WebView).loadUrl(imageurl, extraheaders)
What I get: Image i
Its a bit late but I hope this will help, what you can do is:
String html = ""; mWebView.loadData(html, "text/html", null);
this will make the image exactly similar to your WebView's width, rest you can adjust the WebView itself.