onLongPress 和 ACTION_MOVE

发布于 2024-12-26 16:35:02 字数 143 浏览 1 评论 0原文


我用 MotionEvent 制作了 SimpleOnGestureListener 来捕获 onLongPress,但问题是我无法读取事件位移,因为我总是得到 ACTION_DOWN 代码。如何实现这一目标?我想在长时间点击时移动一些视图。
谢谢!

I made SimpleOnGestureListener capturing onLongPress with MotionEvent, but the problem is that I can't read event displacement, since I am getting always ACTION_DOWN code. How to achieve that? I want to move some of the views during long clicking.

Thanks!

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

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

发布评论

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

评论(1

相守太难 2025-01-02 16:35:02

使用我的水晶球,在没有看到你的代码的情况下,我只能说你应该捕获 onTouch 事件。作为解决方案之一,通过 onLongPress 您可以设置一些布尔值(例如 PRESSED),然后在 onTouch 事件中处理移动事件。

或者您可以尝试与听众一起玩(设置和取消设置它们),但我认为这不是一个好主意。

Using my crystal ball and without seeing your code I can only say that you should capture onTouch event. As one of solution, by onLongPress you can set some bool value (PRESSED, for example) and then in onTouch event handle move event.

Or you can try to play with listeners (set and unset them), but I don't think that it's a good idea.

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