activity在屏幕旋转时的生命周期

************横竖屏切换不配置*************
07-13 15:30:42.459 3220-3220/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:30:42.461 3220-3220/fhk.com.mytest E/lifeCycle: onStart
07-13 15:30:42.463 3220-3220/fhk.com.mytest E/lifeCycle: onResume
-----切成横屏-----
07-13 15:30:45.748 3220-3220/fhk.com.mytest E/lifeCycle: onPause
07-13 15:30:45.749 3220-3220/fhk.com.mytest E/lifeCycle: onSaveInstanceState
07-13 15:30:45.764 3220-3220/fhk.com.mytest E/lifeCycle: onStop
07-13 15:30:45.764 3220-3220/fhk.com.mytest E/lifeCycle: onDestroy
07-13 15:30:45.820 3220-3220/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:30:45.822 3220-3220/fhk.com.mytest E/lifeCycle: onStart
07-13 15:30:45.823 3220-3220/fhk.com.mytest E/lifeCycle: onRestoreInstanceState
07-13 15:30:45.825 3220-3220/fhk.com.mytest E/lifeCycle: onResume
-----切成竖屏-----
07-13 15:31:57.952 3220-3220/fhk.com.mytest E/lifeCycle: onPause
07-13 15:31:57.953 3220-3220/fhk.com.mytest E/lifeCycle: onSaveInstanceState
07-13 15:31:57.965 3220-3220/fhk.com.mytest E/lifeCycle: onStop
07-13 15:31:57.965 3220-3220/fhk.com.mytest E/lifeCycle: onDestroy
07-13 15:31:57.994 3220-3220/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:31:58.004 3220-3220/fhk.com.mytest E/lifeCycle: onStart
07-13 15:31:58.004 3220-3220/fhk.com.mytest E/lifeCycle: onRestoreInstanceState
07-13 15:31:58.007 3220-3220/fhk.com.mytest E/lifeCycle: onResume

*************横竖屏切换配置android:configChanges="orientation****************
07-13 15:33:42.815 3711-3711/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:33:42.820 3711-3711/fhk.com.mytest E/lifeCycle: onStart
07-13 15:33:42.823 3711-3711/fhk.com.mytest E/lifeCycle: onResume
-----切成横屏-----
07-13 15:33:55.855 3711-3711/fhk.com.mytest E/lifeCycle: onConfigurationChanged
07-13 15:33:55.866 3711-3711/fhk.com.mytest E/lifeCycle: onPause
07-13 15:33:55.866 3711-3711/fhk.com.mytest E/lifeCycle: onSaveInstanceState
07-13 15:33:55.872 3711-3711/fhk.com.mytest E/lifeCycle: onStop
07-13 15:33:55.872 3711-3711/fhk.com.mytest E/lifeCycle: onDestroy
07-13 15:33:55.915 3711-3711/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:33:55.917 3711-3711/fhk.com.mytest E/lifeCycle: onStart
07-13 15:33:55.917 3711-3711/fhk.com.mytest E/lifeCycle: onRestoreInstanceState
07-13 15:33:55.921 3711-3711/fhk.com.mytest E/lifeCycle: onResume
-----切成竖屏-----
07-13 15:34:32.340 3711-3711/fhk.com.mytest E/lifeCycle: onConfigurationChanged

*************横竖屏切换配置android:configChanges="orientation|screenSize"*****************
07-13 15:52:26.334 5593-5593/fhk.com.mytest E/lifeCycle: onCreate
07-13 15:52:26.334 5593-5593/fhk.com.mytest E/lifeCycle: onStart
07-13 15:52:26.337 5593-5593/fhk.com.mytest E/lifeCycle: onResume
-----切成横屏-----
07-13 15:52:31.233 5593-5593/fhk.com.mytest E/lifeCycle: onConfigurationChanged
-----切成竖屏-----
07-13 15:52:35.505 5593-5593/fhk.com.mytest E/lifeCycle: onConfigurationChanged


 

你可能感兴趣的:(android开发)