I would like to return previous screen on Android when user nudge up the button towards the middle of screen ?
How Can I do this on Android ? I am opening this page with a standart button and calling an activity.
Screen
I would like to return previous screen on Android when user nudge up the button towards the middle of screen ?
How Can I do this on Android ? I am opening this page with a standart button and calling an activity.
Screen
Use the gesture detection class which is inbuilt in java android to handle the action of user flinging the button upwards. I have forked a sample app that outlines how to implement that. Check it out here. https://github.com/pkavoo/android-BasicGestureDetect
After detecting the upward fling gesture, implement onBackPressed() there.