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
Put your Logo into the assets directory Example : assets/logo.png
Then
String imgData=""; webView.loadDataWithBaseURL("file:///android_asset/", imgData, "text/html", "utf-8", null);