Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application I have a webview in which initially I load any website, say www.google.com.
Later on a button click I want to clear this webview, for which I do

webview.loadUrl("about:blank");  

But doing this does not clear my webview, it continues to display google.com

I tried to re initialize the webview as

webview = new WebView(this);
webview.loadUrl("about:blank");

I also tried

webview.clearHistory();
webview.loadUrl("about:blank");  

But I got the same results, the webview displays google.com
How can I clear the webview?
Please suggest.
Thank You.

Edit:
On the other hand, before loading google.com if I do

webview.loadUrl("about:blank");  

it loads a blank webpage.

share|improve this question

2 Answers

use webView.clearView(); before loading the new URL.

also use There are a couple of things you can do to clear the webview depending exactly what you want to do:

webView.clearCache(true);

webView.clearHistory();

webView.destroy();
share|improve this answer
Hi @Google. Thank you webView.clearView(); worked for me. – Zeba Oct 17 '12 at 10:30
@Zeba hey this is used for u then upvote on my question so any1 can also use this ans. – Google Oct 17 '12 at 12:01
later on I faced issues with this answer... my web view would blank out but after a few seconds google would load again.. also if I touch the webview then google page would load again.. So finally I could not use this solution. – Zeba Oct 18 '12 at 6:31
@Zeba hey can u just post your file in stackoverflow so i can check it and try to check whats exactly your problem – Google Oct 18 '12 at 6:55

try the following : webView.loadData("");

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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