gpt4 book ai didi

Android AlertDialog 默认方向

转载 作者:太空宇宙 更新时间:2023-11-03 10:52:01 25 4
gpt4 key购买 nike

我想将警报对话框的默认方向更改为默认横向。当设备方向改变时,我不愿意处理对话框方向。

AlertDialog.Builder builder = new AlertDialog.Builder(MenuActivity.this);
builder.setMessage("Are you sure you want to exit?")
.setCancelable(false)
.setTitle("EXIT")
.setPositiveButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
MenuActivity.this.finish();
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});

AlertDialog alert = builder.create();
alert.setIcon(R.drawable.ic_launcher);
alert.show();

我找不到专门处理此对话框默认方向的内容?任何帮助将不胜感激。提前致谢。

最佳答案

您可以在您的 Activity 中使用此方法。

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

关于Android AlertDialog 默认方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11821694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com