how does these two methods differ because both are in fact very similar and the instance itself is not destroyed while they go into these two methods as they are intermediate methods before the final call to onDestroy method and the application can go for onResume or onRestart>>onStart without again going for onCreate.

I am not getting why there are two methods (onPause and onStop) while either one of them would have done the thing.

Can anyone please explain a scenario or a quick example where we need to use these two methods separately

link|improve this question

feedback

3 Answers

up vote 27 down vote accepted

See Activity Life Cycle here:

enter image description here

onCreate() :

Called when the activity is first created. This is where you should do all of your normal static set up: create views, bind data to lists, etc. This method also provides you with a Bundle containing the activity's previously frozen state, if there was one. Always followed by onStart().

onRestart() :

Called after your activity has been stopped, prior to it being started again. Always followed by onStart()

onStart() :

Called when the activity is becoming visible to the user. Followed by onResume() if the activity comes to the foreground, or onStop() if it becomes hidden.

onResume() :

Called when the activity will start interacting with the user. At this point your activity is at the top of the activity stack, with user input going to it. Always followed by onPause().

onPause ():

Called as part of the activity lifecycle when an activity is going into the background, but has not (yet) been killed. The counterpart to onResume(). When activity B is launched in front of activity A, this callback will be invoked on A. B will not be created until A's onPause() returns, so be sure to not do anything lengthy here.

onStop():

Called when you are no longer visible to the user. You will next receive either onRestart(), onDestroy(), or nothing, depending on later user activity.

Note that this method may never be called, in low memory situations where the system does not have enough memory to keep your activity's process running after its onPause() method is called.

onDestroy() :

The final call you receive before your activity is destroyed. This can happen either because the activity is finishing (someone called finish() on it, or because the system is temporarily destroying this instance of the activity to save space. You can distinguish between these two scenarios with the isFinishing() method.

EDIT:

When the Activity first time loads the events are called as below:

onCreate()
onStart()
onResume()

When you click the back button OR try to finish() the activity the events are called as below:

onPause()
onStop()
onDestroy()

When you click on Phone button the Activity goes to the background & below events are called:

onPause()
onStop()

Exit the phone dialer & below events will be called:

onRestart()
onStart()
onResume()
link|improve this answer
@Taqub Ahmad Thank you for the explanation.Now i got it :) – Nav Dec 15 '11 at 15:05
feedback

The entire confusion is caused since Google chose non-intuivitive names instead of something as follows:

onCreateAndPrepareToDisplay()   [instead of onCreate() ]
onPrepareToDisplay()            [instead of onRestart() ]
onVisible()                     [instead of onStart() ]
onBeginInteraction()            [instead of onResume() ]
onPauseInteraction()            [instead of onPause() ]
onInvisible()                   [instead of onStop]
onDestroy()                     [no change] 

The Activity Diagram can be interpreted as:

enter image description here

link|improve this answer
feedback

From the Android Developers page

onPause():

Called when the system is about to start resuming a previous activity. This is typically used to commit unsaved changes to persistent data, stop animations and other things that may be consuming CPU, etc. Implementations of this method must be very quick because the next activity will not be resumed until this method returns. Followed by either onResume() if the activity returns back to the front, or onStop() if it becomes invisible to the user.

onStop():

Called when the activity is no longer visible to the user, because another activity has been resumed and is covering this one. This may happen either because a new activity is being started, an existing one is being brought in front of this one, or this one is being destroyed. Followed by either onRestart() if this activity is coming back to interact with the user, or onDestroy() if this activity is going away.

Now Suppose,There are 3 Activities and You go from A to B,then onPause of A will be called Now from B to C then onPause of B and onStop of A will be called.

Paused Activity gets Resume and Stopped get Restarted.

When you call this.finish() onPause-onStop-onDestroy will be called. The main thing to remember..Paused Activities get Stopped and Stopped activity gets Destroyed whenevery Android requires memory for other operations.

Hope it's clear enough.

link|improve this answer
can we term onPause method as an intermediate stage between the activity starting to loose focus and it finally becoming invisble to the user and the Onstop method as when the activity has become completely invisble to the user – Nav Dec 15 '11 at 6:29
I think it should be like that. – Masiar Dec 15 '11 at 6:31
3  
@Nav Suppose there are 3 Activities and You go from A to B,then onPause of A will be called now from B to C then onPause of B and onStop of A will be called. – FasteKerinns Dec 15 '11 at 6:44
feedback

Your Answer

 
or
required, but never shown

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