当 setUseWideViewPort 设置为 true 时 Android Webview 缩放

发布于 2024-12-11 08:44:46 字数 315 浏览 0 评论 0原文

我有一个线性布局的 webview,它在单击按钮时从 url 加载图像,我希望它们一开始就完全适合屏幕,所以我使用了

webview.getSettings().setLoadOverViewMode(true); webview.getSettings().setUseWideViewPort(true);

在添加这些之前,缩放控制按钮按照我想要的方式工作,但是在添加这些之后,缩放似乎不起作用,要么强制关闭,要么只是关闭 webview 本身。

我是android编程的新手,我尝试搜索类似的问题,但找不到任何东西,所以任何建议都会有帮助。

谢谢

I have a webview in a linear layout, which loads images from url on button click, and I wanted them to fit the screen exactly in the beginning, so I used

webview.getSettings().setLoadOverViewMode(true);
webview.getSettings().setUseWideViewPort(true);

before adding these, the zoom control buttons were working as I wanted them to, but after adding these, zoom doesnt seem to work, either it force closes or just closes the webview itself.

I am a newbie to android programming, and i tried searching with similar question, couldnt find anything, so any advise would be helpful.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑饮青盏花 2024-12-18 08:44:46

尝试使用:

webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setSupportZoom(true);

Try using :

webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setSupportZoom(true);
温柔戏命师 2024-12-18 08:44:46

setLoadOverViewMode 意味着它将加载完全缩小的 webview。
我想这就是缩放控件不起作用的原因

setLoadOverViewMode means it will load the webview completely zoomed out.
I guess that is the reason zoom controls dont work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文