I see from Android Developers (http://developer.android.com/reference/android/app/Activity.html) that there is a nice flowchart showing onCreate
leading to onStart
then to onResume
, and so forth. My question is: what other on****()
methods appear in between onCreate
and onStart
?
For example, I've been doing research on the topic, and I know other methods such as onMeasure
and onSizeChanged
, onDraw
, and others exists. Where do they fit in to that flow chart?
Thank you.