Fragment的生命週期

      Fragment必須老是被嵌入到一個activity中。它們的生命週期直接受其宿主activity的生命週期影響。 例如:當activity被暫停,那麼在其中的全部fragment也被暫停;當activity被銷燬,全部隸屬於它的fragment也被銷燬。然而,當一個activity正在運行時(處於resumed狀態),咱們能夠獨立地操做每個fragment,好比添加或刪除它們。當處理這樣一種fragment事務時,能夠將它添加到activity所管理的back stack —— 每個activity中的back stack實體都是一個發生過的fragment事務的記錄。back stack容許用戶經過按下 BACK 按鍵從一個fragment事務後退(日後導航)。spa


一、Fragment的生命週期圖:orm




二、Fragment與Activity生命週期對比:生命週期



三、實際驗證:事務

演示 : 切換到該Fragment
it

11-29 14:26:35.095: D/AppListFragment(7649): onAttach
11-29 14:26:35.095: D/AppListFragment(7649): onCreate
11-29 14:26:35.095: D/AppListFragment(7649): onCreateView
11-29 14:26:35.100: D/AppListFragment(7649): onActivityCreated
11-29 14:26:35.120: D/AppListFragment(7649): onStart
11-29 14:26:35.120: D/AppListFragment(7649): onResume
List

屏幕滅掉:fragment

11-29 14:27:35.185: D/AppListFragment(7649): onPause
11-29 14:27:35.205: D/AppListFragment(7649): onSaveInstanceState
11-29 14:27:35.205: D/AppListFragment(7649): onStop
im


屏幕解鎖margin

11-29 14:33:13.240: D/AppListFragment(7649): onStart
11-29 14:33:13.275: D/AppListFragment(7649): onResume
activity


切換到其餘Fragment:
11-29 14:33:33.655: D/AppListFragment(7649): onPause
11-29 14:33:33.655: D/AppListFragment(7649): onStop
11-29 14:33:33.660: D/AppListFragment(7649): onDestroyView


切換回自己的Fragment:

11-29 14:33:55.820: D/AppListFragment(7649): onCreateView
11-29 14:33:55.825: D/AppListFragment(7649): onActivityCreated
11-29 14:33:55.825: D/AppListFragment(7649): onStart
11-29 14:33:55.825: D/AppListFragment(7649): onResume

回到桌面

11-29 14:34:26.590: D/AppListFragment(7649): onPause
11-29 14:34:26.880: D/AppListFragment(7649): onSaveInstanceState
11-29 14:34:26.880: D/AppListFragment(7649): onStop

回到應用

11-29 14:36:51.940: D/AppListFragment(7649): onStart
11-29 14:36:51.940: D/AppListFragment(7649): onResume


退出應用

11-29 14:37:03.020: D/AppListFragment(7649): onPause11-29 14:37:03.155: D/AppListFragment(7649): onStop11-29 14:37:03.155: D/AppListFragment(7649): onDestroyView11-29 14:37:03.165: D/AppListFragment(7649): onDestroy11-29 14:37:03.165: D/AppListFragment(7649): onDetach

相關文章
相關標籤/搜索