我今天只是学习片段。我按下一个按钮,它会添加/删除一个片段。但是,如果我尝试删除片段,除了我想要删除的片段之外的每个片段都被删除,为什么?第一次按下正确添加了一个片段。
Button2 fragment:
Button button = (Button) view.findViewById(R.id.button2);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
ButtonFragment fragment = new ButtonFragment();
if (fragment != null && fragment.isVisible()) {
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.remove(fragment).commit();
}
else if(!fragment.isVisible())
{
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.add(R.id.fragment_container, fragment ).commit();
}
}
});
return view;
}
}
我在 xml 中有两个这样的片段:当我单击按钮时,我希望添加未在 xml 中定义的片段,它是。但是,下次我按下按钮时,应该会删除该片段。除了那个片段之外,一切都被删除了。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="#123456"
android:id="@+id/fragment_container" >
<fragment
android:id="@+id/TimeFragment"
android:layout_width="0dp"
android:layout_weight="2"
android:layout_height="match_parent"
class="com.example.myfragment.TimeFragment" >
<!-- Preview: layout=@layout/details -->
</fragment>
<fragment
android:id="@+id/Button2Fragment"
android:layout_width="0dp"
android:layout_weight="3"
android:layout_height="match_parent"
class="com.example.myfragment.Button2Fragment" >
<!-- Preview: layout=@layout/details -->
</fragment>
</LinearLayout>