In android, my app provides a button that the user can click to return them back to the screen that appears when the app is opened (onCreate).

How can I set that button to return the user to the main menu?

I have something like this in a switch statement (on click):

         case R.id.return_main:
            onCreate();
            return;

Where return_main is the id of the button....I know that isn't right but I couldn't think of any other way.

Thanks!

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Use an intent to re-launch your main activity:

Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);
link|improve this answer
1  
I'd have to add: Make sure you set CLEAR_TOP on the intent, or it'll only launch your home activity on top of your current activity (that is, without clear-top, going from B to MainActivity and then hitting "back" would still bring you back to activity B). Most uses of a "home" button imply that hitting "back" would then exit the app, which is basically what clear_top does. developer.android.com/reference/android/content/… – Yoni Samlan Nov 22 '10 at 19:35
feedback

You should be able to just call finish(). If you are in an Activity that is a child of your main Activity, this will return you to that main Activity screen.

link|improve this answer
feedback

Intent intent = new Intent(this, MainActivity.class); startActivity(intent);

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.