Android之Dialog半透明背景消失

Posted LVXIANGAN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之Dialog半透明背景消失相关的知识,希望对你有一定的参考价值。

     近日,遇到一个Dialog半透明背景消失的问题,背景需求是自定义Dialog实现警告提示框:

// 初始化警告弹出框
alertDialog = new EmpAlertView(context, Utils.getIdByName(context, "style", "alert_style"));
alertDialog.setCanceledOnTouchOutside(false);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
layout = inflater.inflate(Utils.getIdByName(context, "layout", "alertview"), null);
layout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
// 设置半透明背景
Window window = alertDialog.getWindow(); 
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 0.9f;
window.setAttributes(lp);
			
alertDialog.setContentView(layout);

进行页面操作及用户提示,一切显示正常,如图:


当按下屏幕电源按钮,再次点亮屏幕,发现Dialog半透明的灰暗背景消失了.....




解决方法:设置window.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);修改后如下:

// 初始化警告弹出框
alertDialog = new EmpAlertView(context, Utils.getIdByName(context, "style", "alert_style"));
alertDialog.setCanceledOnTouchOutside(false);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
layout = inflater.inflate(Utils.getIdByName(context, "layout", "alertview"), null);
layout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
			
Window window = alertDialog.getWindow(); 
WindowManager.LayoutParams lp = window.getAttributes();
lp.alpha = 0.9f;
window.setAttributes(lp);
// 防止按下再重新开启屏幕电源,原先变暗的背景变白色
window.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
			
alertDialog.setContentView(layout);


以上是关于Android之Dialog半透明背景消失的主要内容,如果未能解决你的问题,请参考以下文章

Android自定义半透明背景弹窗非popwindow/dialog超简单任意编写!

Android自定义半透明背景弹窗非popwindow/dialog超简单任意编写!

jquery dialog 怎样半透明

android 如何让一个dialog的背景为透明

Android 4.4 — 半透明状态/导航栏 — fitSystemWindows/clipToPadding 不能通过片段事务工作

Android 中悬浮在 activity 上的透明背景 dialog 实现