gpt4 book ai didi

android - 在 fragment 中使用 fragment

转载 作者:行者123 更新时间:2023-11-30 03:57:10 25 4
gpt4 key购买 nike

我正在使用 FragmentStatePagerAdapter 为对象列表创建 View 寻呼机。每个页面都是一个 fragment 。

但是,在该页面上,我还使用 fragment 来显示其他一些数据。

我在执行此操作时遇到了问题。我想知道我可以把 fragment 放在 fragment 中吗?或者任何其他解决方案来解决这个问题?

最佳答案

当前 fragment 实现不支持嵌套 fragment (Android 工程师 Diane 也回答了这个问题here:

Nested fragments are not currently supported. Trying to put a fragment within the UI of another fragment will result in undefined and likely broken behavior.

但这并不意味着它不可行 - 它可以实现,但是需要编写更多的代码而不仅仅是 fragment 。其他用户在同一主题中发表评论:

I managed this by extending FragmentActivity, FragmentManager, and FragmentTransaction. Basic premise is extend DeferringFragmentActivity in my activities, providing same api so no other code changes. When I call getFragmentManager, I get an instance that DeferringFragmentManager, and when I call beginTransaction, I get a DeferredTransaction. This transaction stores POJOs with the called method and arguments. When commit is call, we look for any pending DeferredTransactions first. Once all transactions have been committed, we start a real transaction and run all the stored methods with args

一般来说——除非你走投无路,否则只需重新设计你的布局即可。

关于android - 在 fragment 中使用 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13163249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com