使用Cocos Creator 嵌在webview运行有时会出现黑屏问题, 但是并不是所有app都黑屏, 这类问题就需要app检查一下给webview提供的权限了, 我之前遇到黑屏就是因为用到了localStorage, 而webview没有开启, 需要java端设置一下:webSettings.setDomStorageEnabled(true);
WebSettings用来对WebView的配置进行配置和管理,比如是否可以进行文件操作、缓存的设置、页面是否支持放大和缩小、是否允许使用数据库api、字体及文字编码设置、是否允许js脚本运行、是否允许图片自动加载、是否允许数据及密码保存等等
[java]
view plain
copy
- WebSettings
webSettings = mWebView.getSettings(); - webSettings.setJavaScriptEnabled(true);
- webSettings.setCacheMode(WebSettings.LOAD_DEFAULT);
- webSettings.setDomStorageEnabled(true);
- webSettings.setDatabaseEnabled( webSettings.setAppCacheEnabled(true);
- webSettings.setAllowFileAccess( webSettings.setSavePassword( webSettings.setSupportZoom( webSettings.setBuiltInZoomControls(
- webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS);
- webSettings.setUseWideViewPort(
- mWebView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
- mWebView.setHorizontalScrollbarOv
erlay( mWebView.setHorizontalScrollBarEn abled( mWebView.requestFocus();
相关权限请参考:http://blog.sina.com.cn/s/blog_61cf99580102vj36.html
原文链接:/cocos2dx/338468.html