1

我有一个activity,它创建并显示dialogonCreate. dialogAlertDialog.Builder. _ 它显示正确,除非我旋转屏幕时,dialog不旋转....

怎么解决,thx

显现

<activity android:excludeFromRecents="true" android:name="com.xxx.yyy" android:process=":core" android:theme="@android:style/Theme.Translucent.NoTitleBar"> </activity>

活动

public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        dialog = builder.create();
        dialog.show();

}

4

1 回答 1

1

我最近阅读了另一个用户发布的类似问题。问题解决了。也许它也适合你的问题。看这里Android: Dialog etc restore after rotation changed

于 2012-05-27T14:27:32.317 回答