How do I retrieve all HTML content currently displayed in a WebView?

I found WebView.loadData() but I couldn't find the opposite equivalent (e.g. WebView.getData())

How do I get the HTML content currently displayed by a WebView?

Please note that I am interested in retrieving that data for web pages that I have no control over (i.e. I cannot inject a Javascript function into those pages, so that that it would call a Javascript interface in WebView).

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Unfortunately there is not easy way to do this.

See How do I get the web page contents from a Web View?

You could just make a HttpRequest to the same page as your WebView and get the response.

link|improve this answer
Thanks, what you're suggesting is certainly better than what I've found so far but.... making HttpRequest to a page already loaded to WebView would DOUBLE the bandwidth requirements (loading every browsed page TWICE). Is there a better solution? – JohnK Mar 10 '11 at 18:59
You can make one call, make an HttpRequest to get the data then use WebView.LoadData to push it into the WebView – brendan Mar 10 '11 at 19:16
That's a good idea, I'll try it. Thanks. – JohnK Mar 10 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.