1.说明:
github添加图片: ![Image text](https://github.com/wrs13634194612/QQTop2/blob/master/qqtop.png)
然后,本来以前写了一篇顶部栏的博客,但是那个程序有bug,切换fragment都是使用的replace,生命周期每次都重走一次,这让我每切一次fragment,我的方法都重走一次,非常消耗性能,所以我需要一个不那么频繁重绘的fragment
这是引用的fragment切换执行的生命周期,参考网址:https://www.jianshu.com/p/c8f34229b6dc
Fragment 1 切换到 Fragment 2时生命周期变化
1、通过 add hide show 方式来切换 Fragment
Fragment1 的生命周期变化为:onCreate()、onCreateView、onStart()、onResume() 回调 onHiddenChanged() 方法
Fragment2 的生命周期变化为: onCreate()、onCreateView、onStart()、onResume()
Fragment 2 再次返回到 Fragment 1:不走任何生命周期方法但是回调 onHiddenChanged()方法
总结:当以这种方式进行 Fragment 1 与 Fragment 2 的切换时,Fragment 隐藏的时候并不走 onDestroyView,所有的显示也不会走 onCreateView 方法,所有的 view 都会保存在内存
2、使用 replace 的方法进行切换时
载入Fragment 1时:
Fragment 1的生命周期:onCreate()、onCreateView()、onStart()、onResume()
切换到Fragment2时:
Fragment 1的生命周期:onPause()、onStop()、onDestroyView()、onDestroy()
Fragment 2的生命周期:onCreate()、onCreateV()、onStart()、onResume()
Fragment 2切换回Fragment 1时:
Fragment2的生命周期:onPause()、onStop()、onDestroyView()、onDestroy()
Fragment 1的生命周期:onCreate()、onCreateV()、onStart()、onResume()
总结:通过 replace 方法进行替换的时,Fragment 都是进行了销毁,重建的过程,相当于走了一整套的生命周期
3、使用 ViewPager 进行切换时
当使用 ViewPager 与 Fragment 进行切换时,Fragment 会进行预加载操作
所有的 Fragment 都会提前初始--->预加载;
初始化时 Fragment 们的生命周期:
Fragment 1 的生命周期:onCreate()、onCreateView()
Fragment 2 的生命周期:onCreate()、 onCreateView()
Fragment 1 切换到 Fragment 2 的生命周期:
Fragment 1 :不走任何生命周期;
Fragment 2 &#