使用下面的html我预计绿色矩形只会占据屏幕的一半,但实际上它会占据整个屏幕宽度。我为视口宽度尝试了其他值,没有运气。任何想法为什么它不起作用?
HTML
<html>
<head>
<meta name="viewport" content="width=640" />
</head>
<body>
<div style="width: 300px; height: 50px; background: green;">300px</div>
<div style="width: 600px; height: 50px; background: yellow;">600px</div>
</body>
</html>
XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<WebView
android:id="@+id/web_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
答案 0 :(得分:13)
我有同样的问题并找到答案!
在您的情况下,您需要:
WebSettings settings = webView.getSettings();
settings.setUseWideViewPort(true);
settings.setLoadWithOverviewMode(true);
答案 1 :(得分:0)
部分解决,现在我可以通过双击来缩放:
webView.getSettings().setUseWideViewPort(true);
修改强> 不,我错了......我更改了测试html,发现它缩放到页面宽度 - 1000px,而不是视口宽度 - 640px。
<div style="width: 300px; height: 50px; background: green;">300px</div>
<div style="width: 600px; height: 50px; background: yellow;">600px</div>
<div style="width: 1000px; height: 50px; background: red;">1000px</div>