gpt4 book ai didi

android - 如何设置默认警报对话框的高度和宽度

转载 作者:搜寻专家 更新时间:2023-11-01 07:37:14 25 4
gpt4 key购买 nike

我在设置警报对话框的高度和宽度时遇到问题,下面是我在 OnCreateDialog() 方法中编写的代码:

AlertDialog dialog = new AlertDialog.Builder(context ,AlertDialog.THEME_HOLO_LIGHT)
.setTitle("Title")
.setAdapter(adapter, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {

switch(which){

case 0:
//some Code
break;
case 1:
//some Code
break;
}

}
})
.create();


WindowManager.LayoutParams WMLP = dialog.getWindow().getAttributes();


WMLP.x = 80; //x position
WMLP.y = -100; //y position
WMLP.height = 100;
WMLP.width = 100;

dialog.getWindow().setAttributes(WMLP);
//OR
dialog.getWindow().setLayout(100, 100);

请告诉我代码中的问题是什么。谢谢

最佳答案

您需要在 alertDialog.show(); 之后设置 HeightWidth 的参数

所以你需要打电话,

alertDialog.getWindow().setLayout(100, 100);

调用后

alertDialog.show();

查看更多this回答。

关于android - 如何设置默认警报对话框的高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9206833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com