同一空间中有多个碎片?
我正在开发一个 Android 应用程序,其中包含有许多可能的流程的片段。通过简单的基于 Activity
的流程,它可以像这样流动:
A -> B-> E
A-> C-> E
A-> D-> E
对于片段,我希望能够将屏幕分成三部分来完成同样的操作。我要问的问题是:在我的布局 XML 文件中,如何表示可能填充三个不同片段之一的空间?
I am developing an Android app with fragments that has many possible flows. With simple Activity
-based flow, it can flow like this:
A -> B -> E
A -> C -> E
A -> D -> E
With fragments, I would like to be able to do this same thing with a screen split into thirds. The question that I am asking is: in my layout XML file, how do I represent a space that may be filled with one of three different fragments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看
FragmentTransaction.add()
函数:换句话说,只需在 xml 布局中创建任何空的 GroupView 并在添加片段时将该组的 id 传递到此函数即可。然后当您不再需要它时将其删除。
Take a look at
FragmentTransaction.add()
function:In other words, just create any empty
GroupView
in your xml layout and pass id of this group into this function when adding the fragment. Then remove it when you don't want it anymore.如果您不需要替换活动中的片段,则可以将片段声明直接放在 XML 中。
If you won't need to replace fragments in your activity, you can put the fragment declaration directly inside the XML.