我在viewpager中显示webview时遇到问题。我确实使用了AwesomeViewPager示例并添加了webview,但如果有人有任何示例,则不会渲染。
你的帮助表示赞赏 感谢
答案 0 :(得分:0)
添加一些参数
info_view = (WebView) findViewById(R.id.webView1);
info_view.getSettings().setJavaScriptEnabled(true);
info_view.getSettings().setBuiltInZoomControls(true);
info_view.getSettings().setSaveFormData(true);
info_view.getSettings().setLoadsImagesAutomatically(true);
info_view.getSettings().setSupportMultipleWindows(true);
// info_view.getSettings().setLightTouchEnabled(true);
info_view.getSettings().setAllowFileAccess(true);
info_view.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
info_view.getSettings().setSupportZoom(true);
// info_view.getSettings().setSavePassword(true);
info_view.getSettings().setPluginState(PluginState.ON);
info_view.getSettings().setAppCacheEnabled(true);
info_view.getSettings().setDatabaseEnabled(true);
info_view.getSettings().setDomStorageEnabled(true);
info_view.setWebChromeClient(new WebChromeClient());
info_view.loadUrl(url);