当 setUseWideViewPort 设置为 true 时 Android Webview 缩放
我有一个线性布局的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用:
Try using :
setLoadOverViewMode 意味着它将加载完全缩小的 webview。
我想这就是缩放控件不起作用的原因
setLoadOverViewMode means it will load the webview completely zoomed out.
I guess that is the reason zoom controls dont work