如何在android中的webview中实现手势检测器onfling
任何人都可以举例说明如何在 android 的 webview 中实现手势检测器 onfling
谢谢
can anybody give example how to implement gesture detector onfling in webview in android
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从某个地方找到了这种方法:
要在 WebView 中检测到手势,不需要子类化任何内容。您只需将其添加到您的活动中:
其中 mGestureDetector 在您的 onCreate() 上初始化为 new GestureDetector(this) 。
这将拦截所有手势事件,让您的侦听器有机会对其执行任何您想要的操作,并将其发送回 WebView,以便行为不会受到影响。
I find this way from somewhere:
To have the gesture detected in a WebView, no need to subclass anything. You just need to add this in your activity:
Where mGestureDetector is initialized as new GestureDetector(this) on your onCreate().
This will intercept all the gesture events, give opportunity to your listener to do whatever your want with it, and send it back to WebView so behaviour won’t be affected.
今天刚做的:
Done that just today: