i have a problem. When i start for the first time my android application, in the main activity both the onCreate and the onResume are called. but i want to be called only the onCreate.

what can i do?

link|improve this question
remove the onResume() if u don't want.it won't affect. – Annaveri Kannayan May 30 '11 at 11:29
Check this answer it may be useful: stackoverflow.com/a/8516056/265167 – Yaqub Ahmad Dec 15 '11 at 17:22
feedback

4 Answers

According to the SDK docs what you are seeing is the intended behavior. Have a look at the flowchart in the docs for Activity - Activity Lifecycle.

Programmatically you can overcome this by keeping an instance member to track whether onResume has been called before - the first time it is called, set the variable and return e.g.

private boolean resumeHasRun = false;

@Override
protected void onResume() {
    super.onResume();
    if (!resumeHasRun) {
        resumeHasRun = true;
        return;
    }
    // Normal case behavior follows
}
link|improve this answer
When I try to do this, I receive a "Suspended (exception RuntimeException)" when I try to set resumeHasRun = true. Any ideas? – proudgeekdad Jan 10 at 4:25
Instead of this you should use Activity's onRestart() method, it is intented exactly for that use case. – Fenix Voltres Mar 12 at 12:03
feedback

You can't do anything, as this is how the Activity lifecycle works.

See http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle for a diagram that shows the lifecycle.

link|improve this answer
ok thanks.. so if the onResume is called any time there is no way to make the activity to behave in a certain way at a first access, and in another way when is called back.. am I right? – Alessio May 30 '11 at 12:44
feedback

As you can see in the API the Activity Lifecycle always calls onResume before showing the activity. http://developer.android.com/reference/android/app/Activity.html#ActivityLifecycle

I guess you could make a global boolean for a first access and set it to false. Then override the onResume and check the variable. If false, set it to true and return, if true, call super.onResume.

Should work, but I don't know if it can be handled simpler and I don't have access to the sdk here to test it.

link|improve this answer
I will try thanks !! – Alessio May 30 '11 at 12:47
feedback

The correct answer is to use Activity's onRestart() method. This is probably what you have been looking for.

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.