activity 与 fragment生命周期

时间:2021-06-17 20:41:46

一、Activity的生命周期图:

activity 与 fragment生命周期

二、Fragment生命周期图

activity 与 fragment生命周期

三、对比图

activity 与 fragment生命周期

Log数据

Activity﹕    onCreate
Fragment﹕ onAttach
Fragment﹕ onCreate
Fragment﹕ onCreateView
Fragment﹕ onActivityCreated
Fragment﹕ onStart
Activity﹕    onStart
Activity﹕    onResume
Fragment﹕ onResume
Fragment﹕ onPause
Activity﹕    onPause
Fragment﹕ onStop
Activity﹕    onStop
Fragment﹕ onDestroyView
Fragment﹕ onDestroy
Fragment﹕ onDetach
Activity﹕    onDestroy