Android webview设置,禁用一些东西
我正在使用 myWebview.getSettings().setBuiltInZoomControls(true); 在我的 webview 上设置缩放控件。
我意识到这可以实现各种变焦控制,这些控制在每部手机/设备上都不同。
出于美观目的,我想专门打开和关闭某些功能,例如出现在角落的 +/- 缩放按钮,
这些按钮不适合我的布局。
捏合缩放?好的 双击缩放?好的 实际的缩放按钮?不,谢谢
I am using myWebview.getSettings().setBuiltInZoomControls(true);
to set zoom controls on my webview.
I realize this enables a variety of zoom controls that are different on every phone/device.
For aesthetic purposes I would like to specifically turn on and turn off some features, for instance, the +/- zoom buttons that appear in the corner
These don't fit in my layout.
Pinch to zoom? OK
Double tap to zoom? OK
actual zoom buttons? No thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定所提供的方法是否可行。有一个
setDisplayZoomControls()
,但仅适用于 API11+。上一个问题此处提出了一种可能的方法,尽管看起来有点麻烦。
I'm not sure that this is possible with the provided methods. There's a
setDisplayZoomControls()
, but that only works for API11+.A previous question here suggests a possible approach, though it looks somewhat cumbersome.
使用
.getZoomButtonsController()
您应该在 getSettings 上
来更新它们。您可以在 http://developer 上找到有关可以更改的可能设置的更多信息.android.com/reference/android/widget/ZoomButtonsController.html
You should use
.getZoomButtonsController()
on your getSettings to update those.
You can find more information about the possible settings that you can change on http://developer.android.com/reference/android/widget/ZoomButtonsController.html