在webview中显示网站而不进行缩放

时间:2018-01-28 08:08:10

标签: android webview

我有一个微调器,当选择一个项目时,附加到该项目的html将显示在webview上。

在选择项目后它看起来像这样:

With zoom

然后用户可以缩小,但我想默认显示这样的网页,那有什么选择吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

试试这段代码:

webview.setInitialScale(1);
webview.getSettings().setLoadWithOverviewMode(true) 
webview.getSettings().setUseWideViewPort(true)