Can someone walk me through the best way to do this? I want to make an interface that extends OnTouchListener. Instead of one meathod called onTouch(View view, MotionEvent e) i want 3 meathods; onPress() onMove() and onRelease(). The onPress meathod gets called when you press on the screen and the onMove gets called when you move your finger across the screen. onRelease gets called when you release your finger. All relevant answers are welcome.
| ||||
feedback
|
|
You'd use the You'd then override
| |||
feedback
|
|
I would probably do essentially what CaspNZ posted, the only difference being that you shouldn't extend | |||
|
feedback
|
|
You can use | ||||
|
feedback
|