如何动态显示Android Fragments
我正在 android 3.1 上编写一个 android 应用程序。我最初并排显示 2 个片段。当我选择其他选项卡时,我需要动态创建另外 2 个片段以替换原始片段。我还需要动态设置这些新片段的宽度和重量。
谁能帮我解决这个问题。
提前致谢
I am writing an android app on android 3.1. I am showing 2 fragments side by side initially . When I select other tab I need to create 2 more fragments dynamically in order to replace the original fragments . I also need to set the width and weight of those new fragments dynamically.
Can anyone help me in sorting out this issue.
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尼克·坎皮恩所说的。
这是适合我的代码片段:
请注意,我使用支持库来实现向后兼容性。
What Nick Campion said.
Here's a code fragment that works for me:
Note that I am using the support library for backward compatibility.
您可以使用 FragmentManager 来执行此操作。
FragmentManager.beginTransaction();
然后根据需要添加
和删除
片段,最后调用commit
。如果您查看该文档,它应该非常简单。You can use the FragmentManager to do this.
FragmentManager.beginTransaction();
thenadd
andremove
fragments as you please and finally callcommit
. It should be pretty straightforward if you look at that documentation.