我见过一些应用程序,比如海豚浏览器(不是高清版,普通版)利用缓存到SD的webview,但我似乎无法弄清楚如何做到这一点,有谁知道如何这样做还是指向正确的方向?任何帮助是极大的赞赏!谢谢:))
答案 0 :(得分:6)
以下文章详细介绍了如何更改webview缓存存储以使用SD卡: http://www.devahead.com/blog/2012/01/saving-the-android-webview-cache-on-the-sd-card/
我已经在我的应用程序中对它进行了测试,并证明它可以正常工作。
public class MainApplication extends Application {
// ...
@Override
public File getCacheDir() {
// NOTE: this method is used in Android 2.2 and higher
File cachePath = this.getExternalCachePath();
return cachePath != null ? cachePath : super.getCacheDir();
}
private File getExternalCachePath() {
if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
File externalStorageDir = Environment.getExternalStorageDirectory();
// {SD_PATH}/Android/data/com.package.name/cache
File extStorageAppCachePath = new File(externalStorageDir, "Android" + File.separator + "data" + File.separator + this.getPackageName() + File.separator + "cache");
return extStorageAppCachePath;
}
return null;
}
}
public class SomeWebViewActivity extends Activity {
// ...
@Override
public File getCacheDir() {
// Android 2.1 and lower
return this.getApplicationContext().getCacheDir();
}
}
答案 1 :(得分:1)
嗯,WebSettings
对象有许多set...Path()
方法。目前还不清楚它们中是否有任何一个用于实际缓存。还有CacheManager
对象,它有一堆与缓存相关的静态方法,但没有明显的方法来更改缓存位置。