自定义onTouchEvent之ACTION_MOVE不响应

低级错误,也是因为不知道函数具体用法所犯的错误

public boolean  onTouchEvent (MotionEvent event)
   Since:  API Level 1

   Implement this method to handle touch screen motion events.

Parameters
  The motion event.
ReturnsTrue if the event was handled, false otherwise.  

这个函数返回true代表这个事件已经做完,可以响应下一个事件
而系统的 onTouchEvent(),预设使用Oeverride这个方法,通常情況下去呼叫super.onTouchEvent()并传回布林值。但是这里要注意一点,预设如果去呼叫super.onTouchEvent()則很有可能super里面并没做任何事,并且回传false回來,一旦回传false回來,很可能后面的event (例如:Action_Move、Action_Up) 都会收不到了,所以为了确保保后面event能順利收到,要注意是否要直接呼super.TouchEvent()。
所以,一般可以直接返回true

你可能感兴趣的:(api,UP,action)