设置Dialog具体大小

来源:互联网 发布:seo外包公司北京华网 编辑:程序博客网 时间:2024/05/17 01:19

http://stackoverflow.com/questions/4406804/how-to-control-the-width-and-height-of-default-alert-dialog-in-android

AlertDialog.Builder builder = new AlertDialog.Builder(this);builder.setView(layout);builder.setTitle("Title");alertDialog = builder.create();alertDialog.show();alertDialog.getWindow().setLayout(600, 400); //Controlling width and height.

0 0
原创粉丝点击