在Android中ViewGroup的onInterceptTouchEvent方法中检测到MotionEvent.ACTION_POINTER_DOWN?
我扩展了 ViewGroup
来创建自定义视图。
在触摸事件中,当我的第二根手指触摸屏幕时,onInterceptTouchEvent
方法中未检测到 MotionEvent.ACTION_POINTER_DOWN
。
onInterceptTouchEvent
方法是否允许多点触摸?
我的真实设备是 2.2 手机。请帮忙。
谢谢。
I extended the ViewGroup
to create a custom view.
In the touch events, when my second finger touched the screen, MotionEvent.ACTION_POINTER_DOWN
was not detected in the onInterceptTouchEvent
method.
Does onInterceptTouchEvent
method allow multi-touch?
My real device is a 2.2 handset. Please help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
You can do like this:
尝试捕获 MotionEvent.ACTION_DOWN 吗?
Try capturing MotionEvent.ACTION_DOWN instead?