Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I restart an Android Activity? I tried the following, but the activity simply quits.

public static void restartActivity(Activity act){

        Intent intent=new Intent();
        intent.setClass(act, act.getClass());
        act.startActivity(intent);
        act.finish();

}
share|improve this question

10 Answers

I did my theme switcher like this:

Intent intent = getIntent();
finish();
startActivity(intent);

Basically, I'm calling finish() first, and I'm using the exact same intent this activity was started with. That seems to do the trick?

share|improve this answer
15  
And that's worth downvoting? That was not a requirement mentioned by the OP. In fact, it may be desired. – EboMike May 11 '11 at 22:27
3  
sorry but yes, its awkward and looks very strange. dont take it personal... – Ben May 11 '11 at 23:03
5  
Well, if you don't like the animation, you can turn it off (as you demonstrated in your answer). That doesn't make my answer wrong per se, it's just not showing some additional options that you are free to add (and that wasn't asked for in the question). – EboMike May 11 '11 at 23:16
9  
I think you got that wrong. A downvote means wrong/bad answer, and upvote means an answer is great. How great an answer is compared to others is indicated by the number of upvotes. I can see that you're trying to promote your answer, but you're misusing the system for that purpose. – EboMike May 12 '11 at 16:44
12  
I balanced his down vote :) – Marco Matarazzi Sep 12 '11 at 22:54
show 4 more comments

actually a cleaner way to do this is like so:

    public void reload() {

    Intent intent = getIntent();
    overridePendingTransition(0, 0);
    intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
    finish();

    overridePendingTransition(0, 0);
    startActivity(intent);
}
share|improve this answer
On HTC Desire animations still remain (at least when used in onConfigurationChanged method). They don't occur always, but using EboMike's code they also don't occur always. – Juozas Kontvainis Aug 19 '11 at 8:16
4  
This doesn't work on the main activity started by the launcher. Your activity will end up hidden because of some of the flags set on the intent. Otherwise it works nicely. – Thomas Ahle Sep 23 '11 at 8:37
Good point. makes sense because it calls finish() from the base activity in the stack. – Ben Jan 25 '12 at 7:39
Calling this while we change the theme of the Activity seems to bring out the speed (without animations) – Ashok Felix Jun 9 '12 at 9:00

Since API level 11 (Honeycomb), you can call the recreate() method of the activity (thanks to this answer).

The recreate() method acts just like a configuration change, so your onSaveInstanceState() and onRestoreInstanceState() methods are also called, if applicable.

share|improve this answer
This saved me an enormous amount of trouble! – Phil Dec 19 '12 at 15:26

Call this method

private void restartFirstActivity()
 {
 Intent i = getApplicationContext().getPackageManager()
 .getLaunchIntentForPackage(getApplicationContext().getPackageName() );

 i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK );
 startActivity(i);
 }

Thanks,

share|improve this answer
I think the OP wants to restart any activity, not just the first one, but this was helpful to me. – Kristopher Johnson May 25 '12 at 21:50

Even though this has been answered multiple times.

If restarting an activity from a fragment, I would do it like so:

new Handler().post(new Runnable() {

         @Override
         public void run()
         {
            Intent intent = getActivity().getIntent();
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION);
            getActivity().overridePendingTransition(0, 0);
            getActivity().finish();

            getActivity().overridePendingTransition(0, 0);
            startActivity(intent);
        }
    });

So you might be thinking this is a little overkill? But the Handler posting allows you to call this in a lifecycle method. I've used this in onRestart/onResume methods when checking if the state has changed between the user coming back to the app. (installed something).

Without the Handler if you call it in an odd place it will just kill the activity and not restart it.

Feel free to ask any questions.

Cheers, Chris

share|improve this answer
Great solution and very good reasoning/explanation for the Handler. – J.Romero Dec 24 '12 at 6:44

Actually the following code is valid for API levels 5 and up, so if your target API is lower than this, you'll end up with something very similar to EboMike's code.

intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
overridePendingTransition(0, 0);
share|improve this answer
Does that getIntent works ? It is deprecated rite ? – user1169079 Mar 26 '12 at 5:32

Just to combine Ralf and Ben's answers:

if (Build.VERSION.SDK_INT >= 11) {
    recreate();
} else {
    Intent intent = getIntent();
    overridePendingTransition(0, 0);
    intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
    finish();

    overridePendingTransition(0, 0);
    startActivity(intent);
}
share|improve this answer

If you remove the last line, you'll create new act Activity, but your old instance will still be alive.

Do you need to restart the Activity like when the orientation is changed (i.e. your state is saved and passed to onCreate(Bundle))?

If you don't, one possible workaround would be to use one extra, dummy Activity, which would be started from the first Activity, and which job is to start new instance of it. Or just delay the call to act.finish(), after the new one is started.

If you need to save most of the state, you are getting in pretty deep waters, because it's non-trivial to pass all the properties of your state, especially without leaking your old Context/Activity, by passing it to the new instance.

Please, specify what are you trying to do.

share|improve this answer
1  
I have a button that applies different themes to the app, after the theme is applied, it's saved in preference, the root activity restarts, reads the theme from preference, applies the theme in onCreate(). It turns out that the above code works fine if the activity is not single_instance. Not sure if that's the best practice. – user157195 Sep 9 '09 at 18:11
Currently, there is no clean, SDK-paved way to restart your Activity, AFAIK - if you don't leak anything, you may be good to go :) – Dimitar Dimitrov Sep 9 '09 at 20:04
     public void onRestart() {
 super.onRestart();
     Intent intent = getIntent();
     finish();
     startActivity(intent); 
     }

Use this on your OnResatart method ...

share|improve this answer
    public void onRestart() {
    super.onRestart();
    Intent intent=new Intent();
    intent.setClass(act, act.getClass());
    finish();
    act.startActivity(intent);
    }

try to use this ..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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