我有这个警告框
alertDialog = new AlertDialog.Builder(Instructions.this);
LayoutInflater inflater = this.getLayoutInflater();
View view = inflater.inflate(R.layout.alert_dialog_layout, null);
alertDialog.setView(view);
final AlertDialog newDialog = alertDialog.create();
我尝试这样做:
newDialog.getWindow().setLayout(width, height);
它不起作用!
我该怎么办?感谢
答案 0 :(得分:0)
你必须使用这一行:
alertDialog.getWindow().setLayout(width, height);
在alertDialog.close
行之后而不是之前。
希望这有帮助。