在我的程序中,我使用下面的代码创建一个对话框。理想情况下,我想通过编程方式输入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();
答案 0 :(得分:29)
以下是最终工作的代码:
dialog.getWindow().setLayout(275, 350);