如何知道手势何时完成
Android 是否可以检测手势(滑动、缩放等)是否已完成?
我需要在 ImageView
的 onDraw
方法中使用它来优化性能。
谢谢!
Is there a possibility for Android to detect if an gesture (swipe, zooming, etc.) has finished?
I need that in the onDraw
method of my ImageView
to optimize the performance.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以扩展 LinearLayout 或您正在使用的任何 ViewGroup。然后,您可以重写基类的
onTouchEvent()
,或者如果您需要对事件进行更多控制,您可以重写onInterceptTouchEvent()
方法。在这些方法中,您可以访问MotionEvent
。然后,您可以使用 GestureDetector 来检测与 MotionEvent 相关的任何手势。
通常您会使用它来对手势做任何神奇的事情,并让您的应用程序对手势做出反应。但您可以在您的情况下使用它来知道手势是否已完成。
希望有帮助。
You could extend
LinearLayout
or whatever ViewGroup you are using. Then you can override theonTouchEvent()
of your Base-class or if you need more control over the Event you can overrideonInterceptTouchEvent()
method. In these method you have Access to aMotionEvent
.Then you can use GestureDetector to detect any Gestures related to the MotionEvent.
Usually you would use this to do anything magical with the gesture and let your app react on the gesture. But you can use it in your case to know then a gesture has finished.
Hope that helps.