检测触摸模式并将其与信息相关联

时间:2016-05-08 15:05:05

标签: android unity3d touch

我想创建一个能够检测触摸模式并将其与信息相关联的Android应用 EG:具有特定距离的3个触点 有没有办法实现这个目标?

1 个答案:

答案 0 :(得分:0)

您可以使用记录在案here的MotionEvent对象。 查看Google提供的有关如何检测多个触摸的this training

更具体地说:

// The coordinates of the current screen contact, relative to 
// the responding View or Activity.  
xPos = (int)MotionEventCompat.getX(event, index);
yPos = (int)MotionEventCompat.getY(event, index);