Android Dialog fullScreen&Custom The Width&Height of The Dialog

来源:互联网 发布:烛魔枪一段数据 编辑:程序博客网 时间:2024/04/25 11:50
 Window dialogWindow = dialog.getWindow();        WindowManager.LayoutParams lp = dialogWindow.getAttributes();        lp.width=context.getResources().getDisplayMetrics().widthPixels;        lp.height=context.getResources().getDisplayMetrics().widthPixels;        dialogWindow.setGravity(Gravity.CENTER);        dialogWindow.setAttributes(lp);

0 0
原创粉丝点击