我正在使用以下方法来减少WebView中的页面内容:
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
我也试过这个,结果相同:
webview.setInitialScale(1);
问题: 它适用于所有AVD版本,但在任何地方它都会减少页面内容(非常小的内容和边上的空闲空间)。请参见屏幕截图:http://postimg.org/image/vhv5zvpk1/
这里是没有减少方法的WebView:http://postimg.org/image/6ue99x6bd/
只有一个带有一个div的纯HTML:
<body bgcolor="#009f9e"><center><div align="center" class="txt" style="width:350px;">
<img src="cat.jpg" hspace="10" vspace="10" border="0" class="picbord"><br>
<strong>Title text</strong><br>
Description text is here<br>
<a href="link.php" class="txt2"><img src="button.png" width="152" height="29" hspace="10" vspace="10" border="0" /></a>
</div></center>
</body>
不减少它不适合AVD屏幕,因此原始页面内容非常大。有人可以帮忙吗?