您的位置:首页 > 移动开发 > Android开发

AlertDialog自定义内容区时宽高问题

2015-09-09 16:44 726 查看
问题描述:

创建AlertDialog,并使用setView()方法使用自定义的layout填充。虽然layout根容器宽高都设置为“match_parent”,但是最终显示的宽高都非常小。

原因分析:

AlertDialog默认会把根容器的宽高认为是wrap_content。

解决方法:

1.明确定义出根容器下级容器的宽高;

2.根容器加上任意值的minWidth和minHeight后,其layout_width和layout_height属性即可发挥作用。

3.使用对AlertDialog的WindowManager设置LayoutParams(需要在dialog.show()之后设置);

如:

AlertDialog.Builder adb = new AlertDialog.Builder(this);

Dialog d = adb.setView(new View(this)).create();

// (That new View is just there to have something inside the dialog that can grow big enough to cover the whole screen.)

WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(d.getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
lp.height = WindowManager.LayoutParams.MATCH_PARENT;
d.show();
d.getWindow().setAttributes(lp);


备注:

使用Dialog类,并使用setContentView()方法设置时,宽度两边无边距。

使用AlertDialog时宽度两边有边距。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android dialog 宽度 宽高