[android-developers] Re: WebView.clearHistory()

2012-09-06 Thread Jeremy Haberman
Stefan, Thanks for leading me down the right path. I still encountered situations where the history wouldn't be cleared if I did it in 'onPageFinished', so I ended up doing it in 'onProgressChanged' in the WebChromeClient: webView.setWebChromeClient(new WebChromeClient() { public void

[android-developers] Re: WebView.clearHistory()

2009-04-03 Thread nEx.Software
Outstanding. Thanks for the information. I really appreciate it. Justin On Apr 2, 4:28 am, StefanK skyntc...@gmail.com wrote: I recently had the same issue. What I found is that you have to clear history AFTER the (first) page loads. It appears that the history clears everything before the

[android-developers] Re: WebView.clearHistory()

2009-04-02 Thread StefanK
I recently had the same issue. What I found is that you have to clear history AFTER the (first) page loads. It appears that the history clears everything before the current page so if your browser is at page A, you clear history and navigate to page B your history will be A B, not just B, but if