在更改服务器中的样式后,Android网页不会更新

时间:2017-05-09 04:34:53

标签: java android webview

更改样式后Android网页无法更新。但它可以在浏览器中使用。如何在webview中执行相同操作。

我的 webview配置

webView.getSettings().setAppCacheMaxSize( 5 * 1024 * 1024 ); // 5MB
webView.getSettings().setAppCachePath( getApplicationContext().getCacheDir().getAbsolutePath() );
webView.getSettings().setAllowFileAccess( true );
webView.getSettings().setAppCacheEnabled( true );
webView.getSettings().setCacheMode( WebSettings.LOAD_DEFAULT ); // load online by default

1 个答案:

答案 0 :(得分:1)

要禁用缓存,请使用此设置。

mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);