识别来自 MotionEvent 流的点击

发布于 2024-12-27 21:11:03 字数 210 浏览 0 评论 0原文

有没有办法在 Android 中检测来自 MotionEvent 的点击?更具体地说,我需要一种方法来区分两种事件:移动和点击(我对后者更感兴趣)。

例如,可以在 MapView 组件中观察到这种行为:如果您稍微拖动地图 - 它不会移动(我将其称为单击),但是如果移动距离较大,地图也开始移动(我称之为运动)。是否有标准阈值(全局参数)或其他方法来区分这两个操作?

Is there a way to detect a click from MotionEvents in Android? To be more specific, I need a way to distinct two kind of events: movement and click (I'm more interested in the latter).

For example, this kind of behavior can be observed in MapView component: if you drag the map just a little - it does not move (I would call this a click), however if movement distance is bigger the map starts to move as well (I would call this movement). Is there a standard threshold (global parameter) or other method to distinct these two actions?

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

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

发布评论

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

评论(1

酒浓于脸红 2025-01-03 21:11:03

您可以实现 OnGestureListeneronSingleTapUp() 将针对点击类型事件调用,onScroll() 将针对移动类型事件调用。

You can implement an OnGestureListener. onSingleTapUp() will be called for a click type event and onScroll() will be called for a movement type event.

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