Android Fragment返回堆栈问题
我的布局结构如下
Layout A
--------------------------------------
| ------------------------------- |
| | Layout B | |
| | | |
| | | |
| | | |
| ------------------------------- |
| |
| |
| |
--------------------------------------
下面布局B是另一个View。 布局 A 包含片段 F1,该片段又在布局 B 中添加片段 F11 现在有时我想用片段 F12 替换布局 B 中的片段 F11,有时我想用另一个片段 F2 替换布局 A 中的片段 F1 只要我替换布局 B 内的片段就可以了。但当我用 F2 替换 F1 时,主要问题出现了。 考虑一下 F1 中有 F11 的场景。现在我用 F2 替换 F1。现在,当我按后退键 F11 时,不再可见。这里有什么问题以及我该如何处理它
My layout structure is as follows
Layout A
--------------------------------------
| ------------------------------- |
| | Layout B | |
| | | |
| | | |
| | | |
| ------------------------------- |
| |
| |
| |
--------------------------------------
Below layout B is another View.
Layout A contains a fragment F1 which in turn adds a fragment F11 in layout B
Now sometimes I want to replace fragment F11 in layout B with fragment F12 and sometimes I replace Fragment F1 in layout A with another fragment F2
As long as I'm replacing fragments inside layout B it's fine. But the main problem comes when I replace F1 with F2.
Consider the scenario where I have F11 inside F1. Now I replace F1 with F2. Now when I hit the back key F11 is not visible anymore. What is the problem here and How do I go about handling it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嵌套片段的行为未定义,请参阅此处@hackbod的答案
The behaviour of nested fragments is undefined, see @hackbod's answer here