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

link|improve this question

80% accept rate
3  
Keep track of the last open activiy – Vuk Oct 27 '10 at 23:41
feedback

8 Answers

up vote 36 down vote accepted

Android activities are stored in the activity stack. Going back to a previous activity could mean two things.

  1. You opened the new activity from another activity with startActivityForResult. In that case you can just call the finishActivity() function from your code and it'll take you back to the previous activity.

  2. Keep track of the activity stack. Whenever you start a new activity with an intent you can specify an intent flag like FLAG_ACTIVITY_REORDER_TO_FRONT or FLAG_ACTIVITY_PREVIOUS_IS_TOP. You can use this to shuffle between the activities in your application. Haven't used them much though. Have a look at the flags here: http://developer.android.com/reference/android/content/Intent.html

link|improve this answer
feedback

You just simple call finish();

Cheers

link|improve this answer
feedback

Try Activity#finish(). This is more or less what the back button does by default.

link|improve this answer
feedback

its not a big deal after spending an hour just write on click finish(); it take u the privious activity...

link|improve this answer
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:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)  {
    if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
        // do something on back.
        return true;
    }

    return super.onKeyDown(keyCode, event);
}

Or if you are only supporting Android 2.0 or greater:

@Override
public void onBackPressed() {
    // do something on back.
    return;
}

For more details: http://android-developers.blogspot.com/2009/12/back-and-other-hard-keys-three-stories.html

link|improve this answer
feedback

Just this

super.onBackPressed();
link|improve this answer
feedback

You can explicitly call onBackPressed is the easiest way
Refer Go back to previous activity for details

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.