如何知道手势何时完成

发布于 2024-10-21 18:33:39 字数 120 浏览 3 评论 0原文

Android 是否可以检测手势(滑动、缩放等)是否已完成?

我需要在 ImageViewonDraw 方法中使用它来优化性能。

谢谢!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别挽留 2024-10-28 18:33:39

您可以扩展 LinearLayout 或您正在使用的任何 ViewGroup。然后,您可以重写基类的 onTouchEvent() ,或者如果您需要对事件进行更多控制,您可以重写 onInterceptTouchEvent() 方法。在这些方法中,您可以访问 MotionEvent

然后,您可以使用 GestureDetector 来检测与 MotionEvent 相关的任何手势。

通常您会使用它来对手势做任何神奇的事情,并让您的应用程序对手势做出反应。但您可以在您的情况下使用它来知道手势是否已完成。

希望有帮助。

You could extend LinearLayout or whatever ViewGroup you are using. Then you can override the onTouchEvent() of your Base-class or if you need more control over the Event you can override onInterceptTouchEvent() method. In these method you have Access to a MotionEvent.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文