在Android中,事件主要包括点按、长按、拖拽、滑动等
- 按下(ACTION_DOWN)
- 移动(ACTION_MOVE)
- 抬起(ACTION_UP)
所有的事件操作都发生在触摸屏上,而在屏幕上与我们交互的就是各种各样的视图组件(View)
View的一些基本事件:onTouchEvent
dispatchTouchEvent
我们就对这个两个事件进行分析下
-
dispatchTouchEvent
方法用于事件的分发,Android中所有的事件都必须经过这个方法的分发, - 然后决定是自身消费当前事件还是继续往下分发给子控件处理。返回true表示不继续分发,事件没有被消费。
- 返回false则继续往下分发,如果是ViewGroup则分发给onInterceptTouchEvent进行判断是否拦截该事件。
-
onTouchEvent
方法用于事件的处理,返回true表示消费处理当前事件,返回false则不处理,交给子控件进行继续分发。
代码实现:
public class RTButton extends Button{ public RTButton(Context context,AttributeSet set) { super(context,set); } @Override public boolean onTouchEvent(MotionEvent event) { switch (event.getAction()){ case MotionEvent.ACTION_DOWN: System.out.println("1---RTButton---touch---action_down"); break; case MotionEvent.ACTION_MOVE: System.out.println("1---RTButton---touch---action_move"); break; case MotionEvent.ACTION_UP: System.out.println("1---RTButton---touch---action_up"); break; } return super.onTouchEvent(event); } @Override public boolean dispatchTouchEvent(MotionEvent event) { switch (event.getAction()){ case MotionEvent.ACTION_DOWN: System.out.println("1---RTButton---dispatch---action_down"); break; case MotionEvent.ACTION_MOVE: System.out.println("1---RTButton---dispatch---action_move"); break; case MotionEvent.ACTION_UP: System.out.println("1---RTButton---dispatch---action_up"); break; } return super.dispatchTouchEvent(event); } }
public class RTButtonActivity extends Activity implements View.OnClickListener,View.OnTouchListener{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.rtbutton); initView(); } private void initView() { RTButton rtButton=(RTButton) findViewById(R.id.rtbtn_touch); rtButton.setOnClickListener(this); } @Override public void onClick(View view) { System.out.println("----onclick-------------"); } @Override public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()){ case MotionEvent.ACTION_DOWN: System.out.println("2---RTButton---touch---action_down"); break; case MotionEvent.ACTION_MOVE: System.out.println("2---RTButton---touch---action_move"); break; case MotionEvent.ACTION_UP: System.out.println("2---RTButton---touch---action_up"); break; } return false; } @Override public boolean dispatchTouchEvent(MotionEvent event) { switch (event.getAction()) { case MotionEvent.ACTION_DOWN: System.out.println("2---dispatchTouchEvent---DOWN"); break; case MotionEvent.ACTION_MOVE: System.out.println("2---dispatchTouchEvent---MOVE"); break; case MotionEvent.ACTION_UP: System.out.println("2---dispatchTouchEvent---UP"); break; default: break; } return super.dispatchTouchEvent(event); } @Override public boolean onTouchEvent(MotionEvent event) { switch (event.getAction()) { case MotionEvent.ACTION_DOWN: System.out.println("2---onTouchEvent---DOWN"); break; case MotionEvent.ACTION_MOVE: System.out.println("2---onTouchEvent---MOVE"); break; case MotionEvent.ACTION_UP: System.out.println("2---onTouchEvent---UP"); break; default: break; } return false; } }
测试用例:Activity dispatchTouchEvent --FALSE TouchEvent--FALSE
RTButton dispatchTouchEvent --FALSE TouchEvent--true
结果: