gpt4 book ai didi

android - webView 和缩放范围

转载 作者:行者123 更新时间:2023-11-29 16:13:16 25 4
gpt4 key购买 nike

我在 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);

我想知道是否可以做到这一点,当我启动应用程序时,我只能放大,而当我返回时,我只能从开始时缩小到一定大小。这是放大:enter image description here

这有可能阻止缩小吗?我想避免缩小到这个比例:enter image description here

最佳答案

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

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

关于android - webView 和缩放范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11426635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com