I want my app to recognize when a user swipes from right to left on the phone screen.
How to do this?
|
I want my app to recognize when a user swipes from right to left on the phone screen. How to do this? |
||||
|
|
|
Link is dead, but I'm pretty sure this question takes its answer from the same link Android - basic gesture detection |
|||||||||
|
|
OnSwipeTouchListener.java:
Usage:
|
||||
|
|
If you also need to process click events here some modifications:
And sample usage:
|
|||
|
|
|
Needs some minor updates. Variables are mismatched in the onTouch method, and exception class is not imported. Would make more sense to just return false from onFling(), instead of initiating a variable, assigning it a value, doing nothing with it, and just returning it. Some parts of onTouch method are incorrect. See view/motionEvent cannot be resolved to a variable swipe One helpful tip that would've saved me some time and I hope may help others: when you use this method, you only want to add the "implements" tag to your OnSwipeTouchListener class. Your Activity and View are not implementing it. They are just taking advantage of your class that already does! +1 for Mirek because his code still gave me what I needed for mine :) |
||||
|
|