Android cannot exit webview with back button?

In the onPageFinished method of the WebViewClient, you must clear the history, then 1 click will work! Override public void onPageFinished(WebView view, String url) { // TODO Auto-generated method stub super. OnPageFinished(view, url); if (url.

Equals("yourcurrenturl.com")) { view.clear.

In the onPageFinished method of the WebViewClient, you must clear the history, then 1 click will work! @Override public void onPageFinished(WebView view, String url) { // TODO Auto-generated method stub super. OnPageFinished(view, url); if (url.

Equals("yourcurrenturl.com")) { view.clear.

This piece of code was taken from http://developer.android.com/guide/webapps/webview.html. With this code, after I enter the web view, I cannot exit of the web view unless I press the back button twice really fast. Is there a way to just press the back once and exit the web view?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions