我在onCreateView中创建了两个片段,在onViewCreated中创建了其他片段
onCreateView中的片段A有 3 editText felds
onViewCreated中的片段B具有带有列表项的recyclerview (具有每个项目的名字,姓氏) 点击该项目后,我将传递一个parcelable对象片段A,它具有编辑文本字段并希望在editText字段中显示这些数据
我如何实现这一目标?
答案 0 :(得分:0)
Fragment fragmentGet1 = new FragmentGet1();
Fragment fragmentGet2 = new FragmentGet2();
Fragment fragmentGet2 = new FragmentGet3();
fragmentGet1.setArguments(bundle);
fragmentGet2.setArguments(bundle);
fragmentGet3.setArguments(bundle);
您可以创建所有3个片段的实例,但只能使用FragmentGet1的实例。其他的不使用。之后,当您创建任何这些片段的另一个实例时,它将没有args,因为它是一个完全独立的对象。
您需要的是每次创建新片段时都向前传递包。如果你想在已经创建的片段中创建它,它看起来会像这样:
public void showNextFragment() {
FragmentManager fragmentManager = getActivity().getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
Fragment fragmentGet2 = new FragmentGet2();
if(this.getArguments() != null)
fragmentGet2.setArguments(this.getArguments());
fragmentTransaction.replace(R.id.frame_container, fragmentGet2);
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
}
示例强>
要将Student对象传递给Activity,只需执行以下操作:
Student s = //get it here
Bundle b = new Bundle();
b.putParcelable("student", s);
Intent i = new Intent(getActivity(), ThatOtherActivity.class);
i.putExtra("extraWithStudent", b);
startActivity(i);
然后阅读活动中的数据:
Intent incomingIntent = getIntent();
Bundle b = incomingIntent.getBundleExtra("extraWithStudent");
Student s = (Student) b.getParcelable("student");