How do I avoid onCreate() being called when starting an Activity?

13,180

Solution 1

You have to take a totally different approach. It doesn't matter if you start your Activity with startActivity() or startActivityForResult() because onCreate(), onStart() and onResume() will be called when you start an Activity.

Now if you have a method in your Activity class that starts another thread to do some work then you have to work with flags. If your Activity requires to automatically start the thread on first execution then you have to wrap it around an if clause to check for a flag you set when it is first run.

The idea is to have your Activity set a boolean to true in either your Application instance or SharedPreferences when the thread is first executed. When you come back to that Activity and don't want that thread to be run automatically due to onCreate() being called then you have to wrap your calling code around some if clause like in the example below.

Here is an example.

@Override
public void onCreate(Bundle bundle) {
    super.onCreate(bundle);
    // Other stuff

    if (!YourApplicationInstance.wasCalled) {
        // Run your thread or do something else you want to do only once.

        // Set the wasCalled flag to true to not run this code again
        // if onCreate() is called a second time.
        YourApplicationInstance.wasCalled = true;
    }
}

You'll have to read Using Application context everywhere? to understand how to implement my pseudo class YourApplicationInstance.

Solution 2

there is tag called launchMode for activity in the manifest. checkout this link. and this will not call onCreate but it will call onNewIntent, where you can reinitialize you stuff.

Solution 3

The following is not true. startActivityForResult() and startActivity() only differ in the return target of the called Activity

try using startActivityForResult() rather than startActivity(). I believe this does not completely end the activity and start it again. I would recommend using this link in order to further read on how to implement such a method.

So point 2 of @Kgrover does not hold too.

The Intent flag http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_REORDER_TO_FRONT does exactly this.

Keep an eye out on the Intent flags whenever you have requirements centered around Activity transitions. The system has excellent support.

This is equivalent to Sam Quest's solution, the only difference being that if you set the launchMode, the stack-behavior of your Activity is hardcoded i.e. your Activity A is always in the singleTask mode.

Share:
13,180
jsp
Author by

jsp

Tech enthusiast ...likes all things search Data, search, solr ...

Updated on July 27, 2022

Comments

  • jsp
    jsp almost 2 years

    I want to reload an activity from stack.

    I use startActivity() to start new activities. When I'm on Activity D I want to reload Activity A and not start a new Intent. I can't use startActivity() when calling A from D because it will fire onCreate() which starts a thread to fetch some data.

    EDIT: Updated the stack.

    If I use FLAG_ACTIVITY_REORDER_TO_FRONT it calls the onCreate() method again.

    Following is my scenario.

    Login Activity ̣→ Activity A → Activity B → Activity C → Activity D → Activity A
    

    How do I avoid onCreate() being called?