WindowManager.LayoutParams lp = dialog.getWindow()
.getAttributes();
lp.dimAmount = 0.7f;//设置对话框外部区域透明度
lp.alpha = 0.7f;//设置对话框本体背景透明度
dialog.getWindow().setAttributes(lp);
Dialog 透明度调整
最新推荐文章于 2021-11-18 14:31:45 发布
WindowManager.LayoutParams lp = dialog.getWindow()
.getAttributes();
lp.dimAmount = 0.7f;//设置对话框外部区域透明度
lp.alpha = 0.7f;//设置对话框本体背景透明度
dialog.getWindow().setAttributes(lp);