如何找到动态变化的Fragment?

发布于 2024-11-30 22:27:58 字数 729 浏览 0 评论 0原文

我有一个 layout ,其中有两个 Fragments 。第二个是动态加载的。

Fragment fg = EmptyRightFrag.newInstance();
        getFragmentManager().beginTransaction().add(R.id.right_frag, fg)
            .commit();

然后第二个frame替换为另一个“Fragment”。

    Fragment fg = MyClass.newInstance();
    getFragmentManager().beginTransaction().replace(R.id.right_frag, fg)
                .commit();

最后,我需要通过调用来初始化第二个 Fragment

MyClass field = ((MyClass)getFragmentManager().findFragmentById(R.id.right_frag));

但在这里我确实得到 java.lang.ClassCastException 指出 EmptyRightFrag 无法转换为 我的班级

I have a layout with two Fragments in it. Second one loads dynamically.

Fragment fg = EmptyRightFrag.newInstance();
        getFragmentManager().beginTransaction().add(R.id.right_frag, fg)
            .commit();

Then this second frame replaces with another 'Fragment'.

    Fragment fg = MyClass.newInstance();
    getFragmentManager().beginTransaction().replace(R.id.right_frag, fg)
                .commit();

Finally I need to initialize the second Fragment by calling:

MyClass field = ((MyClass)getFragmentManager().findFragmentById(R.id.right_frag));

But here I do get java.lang.ClassCastException stating EmptyRightFrag cannot be casted to MyClass.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-12-07 22:27:58

您在哪里调用 findFragmentById()?添加后直接就可以了?

commit() 的文档是这样说的:

安排此事务的提交。提交没有发生
立即地;它将被安排为主线程上的工作
下次该线程准备好时完成。

这意味着 Fragment 将在一段时间内不会被添加(至少在您的方法返回之前不会)。无论如何,您可能不应该以这种方式处理初始化,最好让 Fragment 在 onCreate() 或其他内容中处理初始化。

Where are you calling findFragmentById()? Directly after you added it?

The docs for commit() says this:

Schedules a commit of this transaction. The commit does not happen
immediately; it will be scheduled as work on the main thread to be
done the next time that thread is ready.

This means that the Fragment will not be added for a while (at least not before your method has returned). Anyways you should probably not handle initialization this way, it's better to let the Fragment take care of that in onCreate() or something.

2024-12-07 22:27:58

只需在 getFragmentManager().findFragmentById() 之前调用 getFragmentManager().executePendingTransactions(); 就可以了。

Just call getFragmentManager().executePendingTransactions(); before getFragmentManager().findFragmentById() and all will be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文