如何在一个片段中单击并添加另一个片段?
有一个按钮单击以在一个 Activity 中添加 Fragment。firstFragment 中还有另一个按钮。我想单击按钮并添加 secondFragment。如何实现这一点?
提前致谢!
如何在一个片段中单击并添加另一个片段?
有一个按钮单击以在一个 Activity 中添加 Fragment。firstFragment 中还有另一个按钮。我想单击按钮并添加 secondFragment。如何实现这一点?
提前致谢!
在 Fragment1 中,使用按钮扩展 XML 布局。设置按钮的 onClickListener 并定义一个 onClick 方法。
// In Fragment1...
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.layoutWithButton, container, false);
Button b = (Button) view.findViewById(R.id.myButton);
b.setOnClickListener(this);
return view;
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.layoutWithButton:
Fragment fragment2 = new Fragment2;
FragmentTransaction transaction = getActivity().getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.container, fragment2); // where container is the FrameLayout where Fragment 1 was first placed
transaction.commit();
break;
default:
break;
}
根据您希望如何处理您的后台堆栈,您可以transaction.addToBackStack(null);
根据需要包含。