首页 > 代码库 > android 中 webview 怎么用 localStorage?
android 中 webview 怎么用 localStorage?
我在 android里面 使用html5的 localStorage
为什么存不进去也读不出来呀?
网上搜了好多都没效果
1 2 3 4 5 6 7 8 9 | mainWebView = (WebView) this .findViewById(R.id.mainWebView); WebSettings settings = mainWebView.getSettings(); settings.setJavaScriptEnabled( true ); settings.setAllowFileAccess( true ); settings.setDatabaseEnabled( true ); String dir = this .getApplicationContext().getDir( "database" , Context.MODE_PRIVATE).getPath(); settings.setDatabasePath(dir); settings.setDomStorageEnabled( true ); settings.setGeolocationEnabled( true ); |
解决方案:
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.getSettings().setAppCacheMaxSize(1024*1024*8);
String appCachePath = getApplicationContext().getCacheDir().getAbsolutePath();
mWebView.getSettings().setAppCachePath(appCachePath);
mWebView.getSettings().setAllowFileAccess(true);
mWebView.getSettings().setAppCacheEnabled(true);
这个测试了是可以的
转自:http://www.oschina.net/question/111965_108361?sort=time
android 中 webview 怎么用 localStorage?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。