我想将我的警报对话框默认方向默认更改为横向。当设备方向改变时,我不愿意处理对话框方向。
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();
我找不到专门处理此对话框的默认方向的内容?任何帮助将不胜感激。提前致谢。