Is it possible to display image with loadDataWithBaseURL() method in android?
- by user370305
Hi.
I m trying to display html file contains with loadDataWithBaseURL() method in android..
I m Just contains Html file data in one String source object then pass it 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?
Can anybody help me?