Is Nested Fragment Possible?(嵌套片段可能吗?)
问题描述
我有一个 ViewPager 包含三个片段,我想将 3 个新片段放入第三个片段中.可以吗?
I have a ViewPager contains three fragment, and I want to put 3 new fragments into the third fragment.Is that possible?
[ViewPager]
[Fragment 1]
[Fragment 2]
[Fragment 3]
[Fragment 3-1]
[Fragment 3-2]
[Fragment 3-3]
[ViewPager]
我不能 getChildFragmentManager() 但只能 getFragmentManager(),我正在使用 android.support.v4.app:
I can't getChildFragmentManager() but only getFragmentManager(), I'm using android.support.v4.app:
FragmentManager fm = getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.add(R.layout.tools_frame5, new Plugins());
ft.commit();
将 3 个活动放在第三个片段中怎么样,这可能吗?
what about Putting 3 Activities in the third Fragment, Is that possible?
推荐答案
是的,可以嵌套片段.
在处理嵌套片段时,您必须使用 getChildFragmentManager() 而不是 getFragmentManager().有关详细信息,请查看 此链接.
You have to use getChildFragmentManager() instead of getFragmentManager() while you are working with nested fragments. For more details look into this link.
希望这会对你有所帮助....:)
Hope this will help you....:)
这篇关于嵌套片段可能吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌套片段可能吗?
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- URL编码Swift iOS 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- UITextView 内容插图 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01