AlertDialog的弹出框大小如何改变
时间: 2024-05-23 18:15:35 浏览: 63
你可以使用setView方法来设置AlertDialog的布局,然后在布局中调整View的大小以改变弹出框的大小。例如:
View view = LayoutInflater.from(context).inflate(R.layout.dialog_layout, null);
AlertDialog dialog = new AlertDialog.Builder(context)
.setTitle("标题")
.setView(view)
.setPositiveButton("确定", null)
.create();
在dialog_layout中可以自定义布局,并且可以使用layout_width和layout_height属性来调整大小。
阅读全文