I noticed that this (MotionEvent.ACTION_POINTER_DOWN) event is triggered if the onTouch (event) method returned as true , as follows:
@Override public boolean onTouchEvent(MotionEvent event) { switch(motionEvent.getAction() & MotionEvent.ACTION_MASK) { case MotionEvent.ACTION_POINTER_DOWN:
Note: MotionEvent.ACTION_DOWN is only listened if the onTouch () method returned a boolean as return super.onTouchEvent (event); so make sure true to avoid this situation.
Deva
source share