监听屏幕上特定对象上发生手势的时间
我的画布上会同时有多个对象,并且需要检测用户在哪个对象上执行了手势。我能想到的唯一方法是将屏幕分成多个视图并在每个视图中进行监听,但这不是很有效,所以有没有人有更好的方法,最好使用单独属于每个对象的单独手势检测器?
如果有人可以帮助我,我将非常非常非常感激,因为我一整天都在努力解决这个问题
I will have several objects on my canvas at once and need to detect over which one the user performed a gesture. The only way I can think of is splitting the screen up in to many views and listening in each but this isnt very efficient so has anyone a better way, preferably using seperate gesturedetectors that belong to each object individually?
I will be so so so grateful if someone can help me as I've been tearing my hair out trying to solve this all day
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在跟踪画布上对象的位置/命中框,您可以将其与 MotionEvent 中的 RawX 和 RawY 值进行比较。
If you are tracking the position/hitbox of your objects on the canvas you can compare that to the RawX and RawY values in the MotionEvent.
这就是我所做的,只需检查坐标
This is what i did, just check for coordinates