Strange webview goBack issue in android

前端 未结 3 2166
时光说笑
时光说笑 2020-12-29 12:03

I am using webview in Android. But strangely, sometimes even webview canGoBack method returns true, webview goBack method doesn\'t wor

3条回答
  •  轮回少年
    2020-12-29 12:27

    I have disabled the cache and then it worked:

    WebView webView = (WebView)findViewById(R.id.webView);
    webView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
    

提交回复
热议问题