Detect touch press vs long press vs movement?
This code can distinguish between click and movement (drag, scroll). In onTouchEvent set a flag isOnClick, and initial X, Y coordinates on ACTION_DOWN. Clear the flag on ACTION_MOVE (minding that unintentional movement is often detected which can be solved with a THRESHOLD const). private float mDownX; private float mDownY; private final float SCROLL_THRESHOLD = 10; … Read more