其他分享
首页 > 其他分享> > Android AlertDialog默认方向

Android AlertDialog默认方向

作者:互联网

我想默认情况下将Alert对话框的默认方向更改为Landscape.更改设备方向时,我不愿意处理对话框方向.

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();

我无法找到具体处理此对话框默认方向的内容?任何帮助将受到高度赞赏.提前致谢.

解决方法:

您可以在活动中使用此方法.

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

标签:android,android-layout,android-alertdialog,android-orientation
来源: https://codeday.me/bug/20190709/1414268.html