What does onStart() really do? - Android [duplicate]
This question already has an answer here: Difference between onCreate() and onStart()? [duplicate] 2 answers I have been wondering for some time about the exact role of onStart() function in android life cycle. Most of the resources on net just say - it is called just before your activity becomes visible on the screen. But the applications that I have made so far I have never used onStart(). I do all my initialization in onCreate() itself. All other states in android life cycle have some or the other significance but the role of onStart() is not very clear. Are there any specific things that