如何在android中跟踪人的手指运动?

时间:2011-10-06 03:08:17

标签: android touch

我正在尝试创建一个应用程序,让您将手指放在一个起始点(150dpx150dp的区域)并让它通过特定模式(如迷宫)。

我应该怎么做呢? (我习惯使用给定的按钮来做事情)

2 个答案:

答案 0 :(得分:2)

处理OnTouch事件以获取触摸的坐标。

该事件包含MotionEvent类的实例。

移动对象的过程(例如当前绘画位置)将是:

   b=get previous touch coordinates
   a=get cordinates of current touch  
   move object from location b to a

答案 1 :(得分:0)