我在webviewSetting中完成了以下操作,但文件仍未保存在缓存中:
webView.getSettings().setCacheMode(WebSettings.LOAD_NORMAL);
webView.getSettings().setAppCacheMaxSize(1024 * 1024 * 8);
String appCachePath = activity.getCacheDir().getAbsolutePath();
webView.getSettings().setAppCachePath(appCachePath + "/cache");
webView.getSettings().setAllowFileAccess(true);
webView.getSettings().setAppCacheEnabled(true);
任何想法?