webview嵌入H5中功能受影响,为缓存导致,没有开启local storage

// 开启支持localstorage
webView.getSettings().setDomStorageEnabled(true);
webView.getSettings().setAppCacheMaxSize(1024*1024*8);
String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
webView.getSettings().setAppCachePath(appCachePath);
webView.getSettings().setAllowFileAccess(true);
webView.getSettings().setAppCacheEnabled(true);

开启localstorage,重新打包apk,运行正常! 

Logo

Agent 垂直技术社区,欢迎活跃、内容共建。

更多推荐