我正在尝试缓存WebView中加载的网站,但是如果网络连接关闭,则无法正常运行。
Cachdirectory已创建,已存在缓存文件。授予权限。我加载了WebPage,然后关闭了网络(还提供了Wi-Fi权限),并且在尝试重新加载页面时收到错误消息(现在应该从缓存中加载)。请帮忙!
这是代码:
WebView engine=(WebView)findViewById(R.id.web_engine);
engine.getSettings().setJavaScriptEnabled(true);
engine.getSettings().setBuiltInZoomControls(true);
engine.getSettings().setLoadsImagesAutomatically(true);
engine.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
engine.setInitialScale(1);
engine.setWebViewClient(new WebViewClient());
engine.setWebChromeClient(new WebChromeClient()
{
@Override
public void onReachedMaxAppCacheSize(long spaceNeeded, long totalUsedQuota,QuotaUpdater quotaUpdater)
{
quotaUpdater.updateQuota(spaceNeeded * 2);
}
public void onProgressChanged(WebView view, int progress)
{
activity.setTitle("Loading...");
activity.setProgress(progress * 100);
if(progress == 100)
{
activity.setTitle(R.string.app_name);
}
}
});
String appCachePath;
engine.getSettings().setDomStorageEnabled(true);
// Set cache size to 8 mb by default. should be more than enough
engine.getSettings().setAppCacheMaxSize(1024*1024*8);
appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
engine.getSettings().setAppCachePath(appCachePath);
engine.getSettings().setAllowFileAccess(true);
engine.getSettings().setAppCacheEnabled(true);
engine.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
cm = (ConnectivityManager) this.getSystemService(Activity.CONNECTIVITY_SERVICE);
if(cm.getActiveNetworkInfo() == null || !cm.getActiveNetworkInfo().isConnected())
{
appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
engine.getSettings().setAppCachePath(appCachePath);
engine.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
engine.loadUrl("http://www.google.com");
}
else
{
System.err.println("CACHE OR NETWROK");
engine.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
engine.loadUrl("http://www.google.com");
}
}
和权限:<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
最佳答案
您的使用
engine.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
告诉WebView从缓存中加载页面,但是如果它需要缓存中不需要的任何内容,它将查找网络,并且当您没有连接时,它只会给您“页面无法加载错误” 。”这是因为遗憾的是,并不是所有内容都存储在缓存中,即使使用此设置,您也会注意到浏览器正在使用网络。
使WebView忽略无连接的唯一方法是使用
engine.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ONLY);
设置。某些图片不会使用此设置加载(因为它们没有被缓存),但仍会加载它在缓存中找到的所有内容。
与您的问题无关的另一条注释是,在您的代码中,您正在使用setAppCacheMaxSize,并且已在API 18及更高版本中弃用了该注释,因为WebView本身管理缓存大小,因此请您提前注意。