Possible Duplicate:
Android Activity Life Cycle - difference between onPause() and OnStop()

I was wondering what is the difference between onCreate() and onStart() methods?

I think that onStart() is a redundant method. onCreate() is ALWAYS be called (At least in my last two projects).

Can any one explain the difference ?

link|improve this question

feedback

closed as exact duplicate by Robert Harvey Dec 18 '11 at 7:09

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 15 down vote accepted

Take a look on life cycle of Activity enter image description here

Where

***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().

***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.

And you can write your simple class to take a look when these methods call

public class TestActivity extends Activity {
/** Called when the activity is first created. */

private final static String TAG = "TestActivity";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.i(TAG, "On Create .....");
}
/* (non-Javadoc)
* @see android.app.Activity#onDestroy()
*/
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
Log.i(TAG, "On Destroy .....");
}
/* (non-Javadoc)
* @see android.app.Activity#onPause()
*/
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
Log.i(TAG, "On Pause .....");
}

/* (non-Javadoc)
* @see android.app.Activity#onRestart()
*/
@Override
protected void onRestart() {
// TODO Auto-generated method stub
super.onRestart();
Log.i(TAG, "On Restart .....");
}

/* (non-Javadoc)
* @see android.app.Activity#onResume()
*/
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
Log.i(TAG, "On Resume .....");
}

/* (non-Javadoc)
* @see android.app.Activity#onStart()
*/
@Override
protected void onStart() {
// TODO Auto-generated method stub
super.onStart();
Log.i(TAG, "On Start .....");

}
/* (non-Javadoc)
* @see android.app.Activity#onStop()
*/
@Override
protected void onStop() {
// TODO Auto-generated method stub
super.onStop();
Log.i(TAG, "On Stop .....");

}
}

Hope this will clear your confusion.

And take a look here for details.

Here is a very good example and demo application I found!

link|improve this answer
Very helpful. Especially the sample code. Thanks – iturki Jul 25 '11 at 7:07
:) Happy coding – Pankaj Kumar Jul 25 '11 at 7:08
feedback

onCreate() is called when the activity is first created. onStart() is called whenever the activity becomes visible, which includes when it is first created (after onCreate()) and after it is coming back to the screen from being stopped (e.g., another activity took over the screen).

  • The entire lifetime of an activity happens between the first call to onCreate() through to a single final call to onDestroy().
  • The visible lifetime of an activity happens between a call to onStart() until a corresponding call to onStop().
link|improve this answer
1  
its not necessary that its called always when it comes to fore ground.. its called only when its onStop method has been called. Most of the time its onResume() method is called – sandy Jul 25 '11 at 5:16
1  
read my answer once again .... particular this line . it is coming back to the screen from being stopped – Chirag Raval Jul 25 '11 at 5:19
1  
@Chirag "another activity took over the screen" but its not guaranteed that onStop() method is called – ingsaurabh Jul 25 '11 at 5:22
feedback

onCreate() method gets called when activity gets created. and its called only once in whole Activity life cycle. where as onStart() is called when activity is stopped.. i mean it has gone to background and its onStop() method is called by the os. onStart() may be called multiple times in Activity life cycle.More details here

link|improve this answer
feedback

What could be a better explanation than the official documentation on Activity Lifecycle :)

link|improve this answer
feedback

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