I am using webview in Android. But strangely, sometimes even webview canGoBack method returns true, webview goBack method doesn\'t wor
canGoBack
true
goBack
I have disabled the cache and then it worked:
WebView webView = (WebView)findViewById(R.id.webView); webView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);