fragment 生命周期
image.pngactivity 生命周期
image.png当 activity 中有一个fragment的时候 的生命周期是怎样的呢
打开activity
activity onCreate
Fragment onAttach
Fragment onCreate
Fragment onCreateView
Fragment onActivityCreated
Fragment onStart
Activity onStart
Activity onResume
Fragment onResume
当按下home键的时候的生命周期
Fragment onPause
Activity onPause
Fragment onStop
Activity onStop
重新打开 页面的时候的生命周期
Activity onRestart
Fragment onStart
Activity onStart
Activity onResume
Fragment onResume
按下back键的生命周期
Fragment onPause
Activity onPause
Fragment onStop
Activity onStop
Fragment onDestroyView
Fragment onDestroy
Fragment onDetach
Activity onDestroy
网友评论