Android Developer Question:
Download Questions PDF

Explain me the difference between onCreate() and onStart()?

Answer:

The onCreate() method is called once during the Activity lifecycle, either when the application starts, or when the Activity has been destroyed and then recreated, for example during a configuration change.
The onStart() method is called whenever the Activity becomes visible to the user, typically after onCreate() or onRestart().

Download Android Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Explain me difference between Service & Intent Service?What is activity Context?