1

我对 webview 的缩放范围有疑问。这是我的 webView 的代码:

    WebView web = new WebView(getContext());
web.getSettings().setJavaScriptEnabled(true);
web.getSettings().setBuiltInZoomControls(true);

String imagePath = id;
String html = "<html><body style='margin:0;padding:0;'><img src=\""+ imagePath + "\" height=\""+ height + "\"width=\""+ width+ "\"></body></html>";
web.loadDataWithBaseURL("file:///mnt/sdcard/DinEgen/", html, "text/html","utf-8","");
web.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
web.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR);
web.clearView();
web.clearCache(true);

我想知道,当我启动应用程序时,我只能放大,当我返回时,我只能从开始缩小到大小。这是放大:在此处输入图像描述

这可以阻止缩小吗?我想避免缩小到这个比例:在此处输入图像描述

4

1 回答 1

4

是的,您可以通过在 html 的标题中添加以下行来停止缩放并使其适应屏幕大小:

<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1" />
于 2012-07-11T07:14:20.387 回答