A simple example:
webview.loadData("http://example.com/html_with_image.php","text/html",null);
The loaded page looks like this:
<html>
<body>
<img src="lena.jpg" width="768" height="1024">
</body>
</html>
Since transferring the image may take some time I was wondering if loadData()
has to be threaded.