使用android webview缓存html,javascript,css

时间:2012-03-05 23:18:38

标签: android-webview

我在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);

任何想法?

0 个答案:

没有答案