android - Handling drag and touch inside onTouch -


How to differentiate between touch and drag on Android ... I want to create a list view in which people drag and list Drop items can also use a handle out with ... I have tried and failed ..

  Case motion event. ACTION_DOWN: mIsClickX = x; MIsClickY = y; And Case Motion Event Action_up: If (X == MISClickX & Y == MISClicki) {Return Super. Totevent (eve); }   

which does not work ... thanks in advance for all your valuable suggestions

MotionEvent.ACTION_MOVE, you can also check:
1-
2-

Comments