In my app I\'m making a basic HTML help document. I wanted my app\'s logo in the HTML img tag itself, but I don\'t know how I\'d reference to the logo which will be stored i
Store the images in assets folder:
Read the image in the html from assets with file:///android_asset/
file:///android_asset/
for example:
String sHtmlTemplate = "";
load inside the WebView:
webView.loadDataWithBaseURL(null, sHtmlTemplate, "text/html", "utf-8",null);