一、Android 的事件分发机制
1.事件分发的顺序:
Activity => ViewGroup => View 的顺序进行事件分发,onTouch() 执行总优先于 onClick(),然后通过调用 onTouchEvent() 方法进行事件的处理。我们在项目中一般会对
MotionEvent.ACTION_DOWN,
MotionEvent.ACTION_UP,
MotionEvent.ACTION_MOVE,
MotionEvent.ACTION_CANCEL 分情况进行操作。