以编程方式设置对话框大小

时间:2011-11-07 23:41:39

标签: android dialog size height width

在我的程序中,我使用下面的代码创建一个对话框。理想情况下,我想通过编程方式输入width和height参数来缩放对话框。谁能告诉我怎么做?

dialog = new Dialog(MainActivity.this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
popUpLayout = Globals.layoutInflater.inflate(R.layout.pop_up_layout, null);
dialog.setContentView(popUpLayout);
dialog.show();

1 个答案:

答案 0 :(得分:29)

以下是最终工作的代码:

dialog.getWindow().setLayout(275, 350);