缩放时Android WebView响应

时间:2016-04-19 03:02:11

标签: android webview responsive-design

WebView中的字体大小和图像可以缩放,但不能响应屏幕。预计宽度为100%。它不适用于Android 5.0 Lollipop及以上版本。我尝试过Kitkat设备,它有效。我想知道我该怎么办才能让它在5.0及以上版本上运行。

我确实配置了网页的元标记:

< meta name="viewport" content="width=device-width, initial-scale=1" />

以下配置是我在webview上应用的内容:

WebView wv1 = (WebView) findViewById(R.id.webView);
wv1.setWebViewClient(new MyWebViewClient());

wv1.getSettings().setLoadsImagesAutomatically(true);

wv1.getSettings().setJavaScriptEnabled(true);

wv1.getSettings().setLoadWithOverviewMode(true);

wv1.getSettings().setUseWideViewPort(true);

wv1.getSettings().setLoadWithOverviewMode(true);

wv1.getSettings().setSupportZoom(true);

wv1.getSettings().setBuiltInZoomControls(true);

wv1.getSettings().setDisplayZoomControls(false);

0 个答案:

没有答案