| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 移动开发 -> android学习笔记:activity(7)-fragment lifecycle -> 正文阅读 |
|
[移动开发]android学习笔记:activity(7)-fragment lifecycle |
1.To manage lifecycle,Fragment implements(实现)LifecycleOwner,exposing a Lifecycle object that you can access through the getLifecycle() method. 2.The onAttach() callback is invoked(调用) when the fragment has been added to a FragmentManager and is attached(附属的) to its host(主) activity.onAttach() is always called before any Lifecycle state changes 3.The onDetach() callback is invoked when the fragment has been removed from a FragmentManager and is detached(分离)?from its host activity.onDetach() is always called after any Lifecycle state changes 4.note that these callbacks are unrelated to the FragmentTransaction methods attach() and detach() 5.避免在片段实例从FragmentManager中删除后重用它们。当片段处理自己的内部状态清理时,您可能会无意中将自己的状态带入重用实例。 6.A fragment's maximum(最大状态) state is determined by its FragmentManager.A fragment cannot progress beyond the state of its FragmentManager. 7.As part of a FragmentTransaction, you can set a maximum lifecycle state on a fragment using setMaxLifecycle() 8.A fragment's lifecycle state can never be greater than its parent.For example,a parent fragment or activity must be started before its child fragments.Likewise(同样的),child fragments must be stopped before their parent fragment or activity 9.Caution:Avoid vsing the<fragment>tag to add a fragment using XML,as the <fragment>tag allwos a fragment to move beyond the state of its FragmentManager.Instead,always use FragmentContainerView for adding a fragment using XML. 10.Each possible Lifecycle state is represented in the Lifecycle State enum INITIALIZED,CREATED,STARTED,RESUMED,DESTORYED 11.The Fragment class includes callback methods that correspond to each of the changes in a fragment's lifecycle.These include onCreate(),onStart(),onResume(),onPause(),onStopr()and onDestory() 12.fragment的视图有一个独立的生命周期,该生命周期独立于片段的生命周期进行管理.Fragments maintain a LifecycleOwner for their view,which can be accessed using getViewLifecycleOwner() or getViewLifecycleOwnerLiveData(), ?10.当片段达到创建状态时,它已被添加到FragmentManager,并且已调用了onAttach()方法。 11.只有当片段提供有效的视图实例时,才会创建片段的视图生命周期。在大多数情况下,您可以使用带有@LayoutId的片段构造函数,它会在适当的时间自动膨胀视图。您还可以重写onCreateView()以编程方式膨胀或创建片段的视图。 如果且仅当片段的视图是用非null视图实例化的,则该视图将在片段上设置,并且可以使用getView()检索该视图。然后使用与片段视图相对应的新初始化LifecycleOwnerLiveData()更新getViewLifecycleOwnerLiveData()。此时还将调用onViewCreated()生命周期回调。 这是设置视图初始状态、开始观察其回调更新片段视图的LiveData实例以及在片段视图中的任何RecyclerView或ViewPager2实例上设置适配器的适当位置。 |
|
移动开发 最新文章 |
Vue3装载axios和element-ui |
android adb cmd |
【xcode】Xcode常用快捷键与技巧 |
Android开发中的线程池使用 |
Java 和 Android 的 Base64 |
Android 测试文字编码格式 |
微信小程序支付 |
安卓权限记录 |
知乎之自动养号 |
【Android Jetpack】DataStore |
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 | -2025/1/31 6:04:51- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |