WebView,在ICS中显示空白

时间:2012-10-31 10:25:21

标签: android android-webview android-4.0-ice-cream-sandwich

我正在将HTML文件夹中保存的本地assets文档加载到WebView。它在2.3设备中显示正常,但在ICS +设备中显示空白屏幕。

3 个答案:

答案 0 :(得分:6)

尝试使用此代码

webView.getSettings().setPluginsEnabled(true);
webView.getSettings().setAllowFileAccess(true);

根据我的知识,flash网址在ICS中不起作用。

答案 1 :(得分:0)

此代码应该可以使用

webView.getSettings().setPluginsEnabled(true);
webView.getSettings().setAllowFileAccess(true);
webView.loadUrl(url);
weevils.setJavascriptEnabled(true);

还要检查manifest.xml中声明的Internet权限 并看看这个非常相似的线程: Android Webview not rendering correctly on ICS 4.0 +

答案 2 :(得分:0)

如果上述答案无法解决问题,请尝试添加此代码

webView.getSettings().setBuiltInZoomControls(false);

我对此不太确定。