1. Fragment的生命周期
見下圖
2. 與Activity生命周期的對比
3. 代碼場景示範執行個體
切換到該Fragment:
AppListFragment(7649): onAttach
AppListFragment(7649): onCreate
AppListFragment(7649): onCreateView
AppListFragment(7649): onActivityCreated
AppListFragment(7649): onStart
AppListFragment(7649): onResume
螢幕滅掉:
AppListFragment(7649): onPause
AppListFragment(7649): onSaveInstanceState
AppListFragment(7649): onStop
螢幕解鎖
切換到其他Fragment:
AppListFragment(7649): onDestroyView
切換回本身的Fragment:
回到桌面
回到應用
D/AppListFragment(7649): onStart
退出應用
AppListFragment(7649): onDestroy
AppListFragment(7649): onDetach
技術改變世界