Issue
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.
Solution
WebView is loading async anyway, so you shoudnt worry about that.
Answered By - JustDoingIt
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.