如何找到动态变化的Fragment?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在哪里调用
findFragmentById()
?添加后直接就可以了?commit()
的文档是这样说的:这意味着
Fragment
将在一段时间内不会被添加(至少在您的方法返回之前不会)。无论如何,您可能不应该以这种方式处理初始化,最好让 Fragment 在 onCreate() 或其他内容中处理初始化。Where are you calling
findFragmentById()
? Directly after you added it?The docs for
commit()
says this: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 inonCreate()
or something.只需在
getFragmentManager().findFragmentById()
之前调用getFragmentManager().executePendingTransactions();
就可以了。Just call
getFragmentManager().executePendingTransactions();
beforegetFragmentManager().findFragmentById()
and all will be fine.