アラート ダイアログのデフォルトの向きをデフォルトで横に変更したいと考えています。デバイスの向きが変更されたときに、ダイアログの向きを処理したくありません。
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();
このダイアログのデフォルトの向きを具体的に処理するものを見つけることができませんか? どんな助けでも大歓迎です。前もって感謝します。