ANDROID |如何在AlertDialog中创建垂直按钮模式?

时间:2016-11-28 19:26:15

标签: android alertdialog

我对此并不了解...... 也许你们都可以帮助我代码来制作像这样的警报对话框 see image alert dialog here

感谢所有人....

2 个答案:

答案 0 :(得分:1)

您可以通过以下方式创建自定义提醒对话框:

AlertDialog.Builder adb = new AlertDialog.Builder(this);
    adb.setTitle("Custom dialog");
    view = (LinearLayout) getLayoutInflater()
//custom layout for you dialog
        .inflate(R.layout.dialog, null);
    adb.setView(view);

答案 1 :(得分:0)

老实说如果你的情况允许你修改一下对话框,我会尝试使用最新的app compat,它提供了查找对话框的材料。

使用此库中的AlertDialog的好处是它可以执行"完整堆栈"如果要显示的按钮有可用宽度,则显示按钮。

以下是空间不足时的样子:

enter image description here

https://material.google.com/components/dialogs.html#dialogs-specs