Android ListPreference如何更改警报对话框的大小

时间:2017-05-05 14:11:19

标签: android preference

我可以设置按钮,警告对话框的图标。但我不知道如何更改警告对话框的大小。

1 个答案:

答案 0 :(得分:0)

试试这个,只需在show()

之后添加setlayout()方法
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(layout);
builder.setTitle("Title");
alertDialog = builder.create();
alertDialog.show();
alertDialog.getWindow().setLayout(600, 400); //change width and height.