我有一个activity
,它会在dialog
中创建并显示onCreate
。
dialog
由AlertDialog.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();
}
答案 0 :(得分:1)
我最近读过其他用户发布的类似问题。问题解决了。也许它也适合你的问题。看这里Android: Dialog etc restore after rotation changed