Android Activity Lifecycle Note

Activity lifecycle

first run the apk:
06-01 10:54:33.646: DEBUG/u0fly ----->(283): onCreate
06-01 10:54:33.646: DEBUG/u0fly ----->(283): onStart
06-01 10:54:33.686: DEBUG/u0fly ----->(283): onResume
press "HOME"
06-01 10:56:51.327: DEBUG/u0fly ----->(283): onPause
06-01 10:56:52.207: DEBUG/u0fly ----->(283): onStop
restart apk 
06-01 11:01:42.987: DEBUG/u0fly ----->(283): onRestart
06-01 11:01:42.987: DEBUG/u0fly ----->(283): onStart
06-01 11:01:42.987: DEBUG/u0fly ----->(283): onResume
press "BACK"
06-01 11:02:42.065: DEBUG/u0fly ----->(283): onPause
06-01 11:02:42.677: DEBUG/u0fly ----->(283): onStop
06-01 11:02:42.677: DEBUG/u0fly ----->(283): onDestroy

你可能感兴趣的:(Android,android)