Fragment与Activity生命周期流程
2017-09-18 09:21:45 8 举报
Fragment与Activity的生命周期流程相似,但略有不同。当Activity处于创建、启动、恢复等状态时,Fragment也会经历相应的生命周期回调方法。在Activity销毁时,Fragment会先执行onDetach()方法,然后才会销毁自身。而Activity则不会经历onDetach()方法。另外,Fragment还提供了onAttach()和onCreateView()等方法,用于在Fragment与Activity关联时进行初始化操作。总之,Fragment与Activity的生命周期流程相互关联,需要开发者注意区分并正确处理各自的生命周期回调方法。
作者其他创作
大纲/内容
onPause
onViewCreated
onActivityCreated
onDestory
onStart
onCreate
onCreateView
onStop
User navigates backword or Fragment is removed/replaced
开始创建Fragment对象
the fragments returns to the layout from the back stack
onDetach
onAttach
onDestoryView
onResume
Fragment初始化完毕
0 条评论
回复 删除
下一页