android life cycle

There two Activity.
1.First press the icon of the app enter the first Activity,then click the button witch is use to jump to the second Activity in the first Activity;
2.Then press back , to the first one;
3.Then exit the first one.

The log is:
07-07 09:06:23.560: VERBOSE/my_log(3046): onCreate in Activity 1
07-07 09:06:23.730: VERBOSE/my_log(3046): onStart in Activity 1
07-07 09:06:23.730: VERBOSE/my_log(3046): onResume in Activity 1
07-07 09:06:41.120: VERBOSE/my_log(3046): onPause in Activity 1
07-07 09:06:41.170: VERBOSE/my_log(3046): onCreate in Activity 2
07-07 09:06:41.190: VERBOSE/my_log(3046): onStart in Activity 2
07-07 09:06:41.190: VERBOSE/my_log(3046): onResume in Activity 2
07-07 09:06:41.470: VERBOSE/my_log(3046): onStop in Activity 1
07-07 09:07:18.700: VERBOSE/my_log(3046): onPause in Activity 2
07-07 09:07:18.730: VERBOSE/my_log(3046): onRestart in Activity 1
07-07 09:07:18.730: VERBOSE/my_log(3046): onStart in Activity 1
07-07 09:07:18.730: VERBOSE/my_log(3046): onResume in Activity 1
07-07 09:07:18.990: VERBOSE/my_log(3046): onStop in Activity 2
07-07 09:07:18.990: VERBOSE/my_log(3046): onDestroy in Activity 2
07-07 09:07:43.250: VERBOSE/my_log(3046): onPause in Activity 1
07-07 09:07:43.790: VERBOSE/my_log(3046): onStop in Activity 1
07-07 09:07:43.790: VERBOSE/my_log(3046): onDestroy in Activity 1

你可能感兴趣的:(android)