A C M O 

O

onConfigurationChanged(Configuration) - Method in class com.allmycode.demo1.MyActivity
Never called unless you set android:configChanges in the AndroidManifest.xml file.
onCreate(Bundle) - Method in class com.allmycode.demo1.MyActivity
Called when the activity is created (either for the first time or after having been Destroyed.
onDestroy() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions from Stopped to Destroyed.
onPause() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions from Active to Paused.
onRestart() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions to Paused (on its way to Active) after having been Stopped.
onResume() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions from Paused to Active.
onSaveInstanceState(Bundle) - Method in class com.allmycode.demo1.MyActivity
Usually (but not always) called during the transition from Active to Paused, or during the transition from Paused to Stopped.
onStart() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions to Paused (on its way to Active), either for the first time or after the activity has been Stopped.
onStop() - Method in class com.allmycode.demo1.MyActivity
Called when the activity transitions from Paused to Stopped.
A C M O