AlertDialog自定义内容区时宽高问题
创建AlertDialog,并使用setView()方法使用自定义的layout填充。虽然layout根容器宽高都设置为“match_parent”,但是最终显示的宽高都非常小。
·
问题描述:
创建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时宽度两边有边距。
更多推荐
已为社区贡献1条内容
所有评论(0)