A View's onTouchListener vs onTouchEvent

后端 未结 2 1511
情深已故
情深已故 2021-02-13 06:18

What is the difference between a view\'s onTouchEvent :

public class MyCustomView extends View {
    // THIS :
    @Override
    public boolean on         


        
2条回答
  •  我在风中等你
    2021-02-13 07:06

    Answer by LeeYiHong is correct, and the other very important thing is what is written at http://developer.android.com/reference/android/view/View.OnTouchListener.html:

    The callback [i.e. View.OnTouchListener -> onTouch(View v, MotionEvent event)] will be invoked before the touch event [i.e. onTouchEvent(MotionEvent)] is given to the view.

提交回复
热议问题