我的主要活动xml文件有一个框架布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
我以这种方式添加了片段:
getSupportFragmentManager().beginTransaction()
.replace(R.id.fragment,new AFragment(),"AFRAGMENT")
.commit();
现在的问题是假设A,B,C,D是片段并且来自A-> B-> C.现在在C上;我旋转屏幕以便重新创建活动。 现在我要加载C;但是默认情况下会加载A. 如何持久保存当前加载的片段?