如何使用翻转器启用多点触控缩放来进行 WebView 滑动手势检测
那么,有没有一种方法可以让 webview 控件检测滑动,同时能够进行多点触控缩放并具有内置缩放控件呢?
So is there a way for a webview control to detect a swipe while capable of doing multitouch zoom and having build-in zoom controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的!有一种方法可以通过实现 WebView 并创建自定义 Webview 来做到这一点
这样自定义的 WebView 就内置了
滑动检测同时具有多点触控和内置控件
用于缩放。
这是自定义的 webview
就是这样。您已经在滑动检测中构建了。代码有点“伪代码”并且还没有清理它,但是覆盖 MotionEvent.ACTION_MOVE 和 case MotionEvent.ACTION_UP 中的 onTouchEvent 应该可以解决问题。您还可以使用时间和差异范围。
YES!There is a way of doing that by implementing WebView and creating a custom Webview
This way the custom WebView has build in
swipe detection having at the same time multi touch and build in controls
for zoom.
and here is the custom webview
And that's It.You have Build in swipe detection.Code is in a bit "pseudocode" and haven't cleaned it up but Overriding the onTouchEvent in MotionEvent.ACTION_MOVE and case MotionEvent.ACTION_UP should do the trick.You can also play with the time and difference bounds .