2

当设备旋转时,我的应用程序中的片段不会重新添加到活动的视图中。如果我正确理解了文档(以及关于 SO 的类似问题),这应该由片段管理器处理(无需在我的清单中指定 android:configChanges)。

我的活动看起来像:

public class MainActivity extends SherlockFragmentActivity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        if (savedInstanceState == null){
            getSupportFragmentManager().beginTransaction()
                .add(R.id.main_fragment_placeholder, new DashboardFragment(),"dashboard")
                .commit();
        }
    }
}

Fragment 看起来像(为了清楚起见,省略了 clicklisteners 等):

public class DashboardFragment extends SherlockFragment {
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
        View root = inflater.inflate(R.layout.fragment_dashboard, container, false);
    }
}

布局文件看起来像(activity_main.xml):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:id="@+id/main.main">

    <FrameLayout android:id="@+id/main_fragment_placeholder"
             android:layout_height="fill_parent"
             android:layout_weight="1"
             android:layout_width="0px"
             />

</LinearLayout>

和fragment_layout.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main.wrapper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <my.layout.DashboardLayout
           android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:id="@+id/main.dashboard">
    <!-- some buttons here -->
    </my.layout.DashboardLayout>

</LinearLayout>

但是,当我旋转我的设备时,屏幕总是变黑。

4

2 回答 2

11

原来我做了一件愚蠢的事。我在我的活动中覆盖了该onSaveInstanceState(...)方法,而没有调用super.onSaveInstanceState(),这导致片段没有被重新创建。在这里发布答案,希望我可以节省其他人的时间!

于 2012-10-26T07:42:05.553 回答
0

片段通常会在配置更改时重新创建。如果您不希望发生这种情况,请使用

setRetainInstance(true);在片段的构造函数中

这将导致在配置更改期间保留片段。

http://developer.android.com/reference/android/app/Fragment.html#setRetainInstance(boolean )

于 2012-10-25T09:07:19.310 回答