I'm trying to display the content of a html file with the loadDataWithBaseURL() method in android.
I just have a String that contains the Html file data in one String called source and I then pass this to the method.
for e.g
String source; //contain html tags with images
View.loadDataWithBaseURl(null,source,"text/html","UTF-8","about:blank");
The data displayed in view is fine. My problem is if my html file contains any images then I couldn't displayed it? how can I do that?