I\'m trying to load a html string stored in the database which contain a image into a WebView. The image is stored in the internal memory. I am giving a referen
WebView
Try like this
String base = Environment.getExternalStorageDirectory().getAbsolutePath().toString(); String imagePath = "file://"+ base + "/image_name.jpg"; String html = " "; webView.loadDataWithBaseURL("", html, "text/html","utf-8", "");