I am trying to detect three fingers in the same time on HTC One M10. There is no motion called on any of this cases.
case MotionEvent.ACTION_DOWN: return "Down";
case MotionEvent.ACTION_MOVE: return "Move";
case MotionEvent.ACTION_POINTER_DOWN: return "Pointer Down";
case MotionEvent.ACTION_UP: return "Up";
case MotionEvent.ACTION_POINTER_UP: return "Pointer Up";
case MotionEvent.ACTION_OUTSIDE: return "Outside";
case MotionEvent.ACTION_CANCEL: return "Cancel";
I download some apps and they also cant detect 3 at the same time but they recognized two. How can I recognized only two if the motions not call. Thanks.
update After chacking agian the case MotionEvent.ACTION_MOVE didn't call. What can I do?