I want to do something simple on android app. How is it possible to go back to a previous activity.
What code do I need to go back to previous activity
|
I want to do something simple on android app. How is it possible to go back to a previous activity. What code do I need to go back to previous activity
| |||||
feedback
|
|
Android activities are stored in the activity stack. Going back to a previous activity could mean two things.
| |||
|
feedback
|
|
Try | |||
|
feedback
|
|
its not a big deal after spending an hour just write on click finish(); it take u the privious activity... | |||
|
feedback
|
|
Are you wanting to take control of the back button behavior? You can override the back button (to go to a specific activity) via one of two methods. For Android 1.6 and below:
Or if you are only supporting Android 2.0 or greater:
For more details: http://android-developers.blogspot.com/2009/12/back-and-other-hard-keys-three-stories.html | |||
|
feedback
|
|
You can explicitly call | |||
|
feedback
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP) This will get you to a previous activity keeping it's stack and clearing all activities after it from the stack. | |||
|
feedback
|