MotionEvent中ACTION_CANCEL和ACTION_UP有什么区别?

发布于 2024-10-20 23:25:10 字数 182 浏览 1 评论 0原文

我想跟踪屏幕上的手指触摸。所以我所做的是开始记录 MotionEvent 触发 ACTION_DOWN 时的位置,但是我如何知道操作何时完成,在 ACTION_CANCEL 处,还是ACTION_UP

它们之间的确切区别是什么?

I want to track a finger touch on the screen. So what I did was to start recording the position when MotionEvent triggers ACTION_DOWN, but how do I know when the action is finished, at ACTION_CANCEL, or ACTION_UP?

What's the exact difference between them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

失与倦" 2024-10-27 23:25:10

MotionEvent:

  • ACTION_UP:按下手势已完成,动作包含最终释放位置以及自上次向下或移动事件以来的任何中间点。

  • ACTION_CANCEL:当前手势已中止。

当父级拥有该动作时,例如当用户在列表视图上拖动足够多时,它将开始滚动而不是让您按下其中的按钮时,就会发生 ACTION_CANCEL 。您可以在视图组文档中找到有关它的更多信息: onInterceptTouchEvent< /a>.

因此,当将操作拖出父级时,请使用 ACTION_CANCEL,否则使用 ACTION_UP。

MotionEvent:

  • ACTION_UP: A pressed gesture has finished, the motion contains the final release location as well as any intermediate points since the last down or move event.

  • ACTION_CANCEL: The current gesture has been aborted.

ACTION_CANCEL occurs when the parent takes possession of the motion, for example when the user has dragged enough across a list view that it will start scrolling instead of letting you press the buttons inside of it. You can find out more about it at the viewgroup documentation: onInterceptTouchEvent.

so use ACTION_CANCEL when the action is dragged out of the parent, and ACTION_UP otherwise.

三生池水覆流年 2024-10-27 23:25:10

一般来说,当访客完成时,ACTION_UP 由用户触发,以明确指示用户完成了与移动的交互。

另一方面,Android 系统调用 ACTION_CANCEL 来指示其中一个视图使用 onInterceptTouchEvent() 获取控制权,该视图返回 true,因为系统完成了触摸事件的传播。

请看一下图表

In general ACTION_UP is triggered by user when the guest is finished to definitely indicate that the user completed interacting with movement.

On the other hand ACTION_CANCEL is called by Android system to indicate that one of views took control using onInterceptTouchEvent() which returned true as a result system finished propagating the touch event.

Please take a look at a diagram

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