Skip to content

Instantly share code, notes, and snippets.

View shichaosong's full-sized avatar

宋世超 shichaosong

  • 北京小米移动软件有限公司
View GitHub Profile
private void enableHTML5AppCache() {
webView.getSettings().setDomStorageEnabled(true);
// Set cache size to 8 mb by default. should be more than enough
webView.getSettings().setAppCacheMaxSize(1024*1024*8);
// This next one is crazy. It's the DEFAULT location for your app's cache
// But it didn't work for me without this line
webView.getSettings().setAppCachePath("/data/data/"+ getPackageName() +"/cache");