码迷,mamicode.com
首页 > 其他好文 > 详细

赵雅智_Fragment生命周期

时间:2016-04-03 10:14:38      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

官网帮助文档链接:
 http://developer.android.com/guide/components/fragments.html

主要看两张图。和跑代码

一,Fragment的生命周 

          技术分享

二,与Activity生命周期的对照

     技术分享

(1)onAttach()//当一个Fragment对象关联到一个Activity时调用。

(2)onCreate()//初始创建Fragment对象时调用。

(3)onCreateView()//创建与Fragment对象关联的View视图时调用。

(4)onActivityCreated()//Activity对象完毕自己的onCreate方法时调用。

(5)、onStart()//Fragment对象在ui可见时调用。

(6)onResume()//Fragment对象的ui能够与用户交互时调用。

(7)onPause()//Fragment对象可见,但不可交互。

有Activity对象转为onPause状态时调用。

(8)onStop()//有空间全然遮挡;或者宿主Activity对象转为onStop状态时调用。

(9)onDestroyView()//Fragment对象清理view资源时调用,也就是移除fragment中的视图。

(10)onDestroy()//Fragment对象完毕对象清理View资源时调用。

(11)onDetach()//Fragment对象没有与Activity对象关联时调用。


场景演示 : 切换到该Fragment

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

屏幕灭掉:

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


屏幕解锁

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


切换到其它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): onPause
11-29 14:37:03.155: D/AppListFragment(7649): onStop
11-29 14:37:03.155: D/AppListFragment(7649): onDestroyView
11-29 14:37:03.165: D/AppListFragment(7649): onDestroy
11-29 14:37:03.165: D/AppListFragment(7649): onDetach




赵雅智_Fragment生命周期

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/5349079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!