使用 ScaleDetector 进行 Android WebView 缩放
您好,
当用户捏合手指并将手指移近/移远时,是否可以支持 WebView 的缩放(类似于默认浏览器)。我使用 2.2 并认为使用 ScaleGestureDetector 可以实现这一点。问题是我似乎找不到设置比例的方法。 WebView.getScale() 返回通过 ZoomIn() 和 ZoomOut() 更改的当前比例,但我找不到 setScale() 或默认设置缩放并让操作系统处理它的选项。
安迪
HI,
Is it possible to support zooming of a WebView (similar to the default browser) when the user pinches and moves their fingers closer / further away. Im using 2.2 and tought this would be possible using the ScaleGestureDetector. THe problem is that I can't seem to find a method to set the scale. WebView.getScale() returns the current scale which changes through zoomIn() and ZoomOut() but I can't find setScale() or an option to set zooming by default and let the OS handle it.
Andy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
用途:
进行捏合缩放并将默认的放大/缩小按钮放在屏幕上。
Use:
to do pinch zooming and put the default zoom in/out buttons on the screen.
您需要在 WebView 中实现 onTouchEvent(MotionEvent)。
然后在该事件中,将 MotionEvent 传递给 ScaleGestureDetector 以便它可以处理它,然后调用 super.
You need to implement the onTouchEvent(MotionEvent) in your WebView.
Then in that event, pass the MotionEvent to the ScaleGestureDetector so that it can process it, then call the super.
有一个
setScale
,试试这个:There is a
setScale
, try this :