I am displaying a text file that contains html code in a webview using loadData()
. The html code has a image tag like <img src="file:///android_asset/test.png" alt="cd4+ cell">
and placed the test.png file in the res\drawable
folder. But webview is displaying perfect without the img. Where is the probelm in my system?
Android html image prob
1.4k views Asked by dev_android At
2
Try using
loadDataWithBaseUrl()
instead ofloadData()
. Something like this: