标签: android multi-touch
多次点击会将事件触发为单击吗? 事件如下: 点击 压制 释放
也许更多,因为它使用另一个手指来创建变体?
谢谢。
答案 0 :(得分:1)
是的,多点触控的检测方法与简单触摸相同:通过onTouch()。区别在于提供的MotionEvent。您可以getPointerId(int)检查已更改的点。
onTouch()
MotionEvent
getPointerId(int)
有关完整示例,请查看:http://www.zdnet.com/blog/burnette/how-to-use-multi-touch-in-android-2-part-3-understanding-touch-events/1775