显示对话框时模糊/变暗背景窗口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示对话框时模糊/变暗背景窗口相关的知识,希望对你有一定的参考价值。
dialog = new AlertDialog.Builder(WordCube.this) .setTitle(WordCube.this.getResources().getString(R.string.app_name)) .setMessage(s) .setIcon(R.drawable.logo) .setPositiveButton(R.string.btn_close, null) .show(); WindowManager.LayoutParams lp = dialog.getWindow().getAttributes(); // retrieves the windows attributes lp.dimAmount=0.0f; // sets the dimming amount to zero dialog.getWindow().setAttributes(lp); // sets the updated windows attributes dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND); // adds the flag to blur bg
以上是关于显示对话框时模糊/变暗背景窗口的主要内容,如果未能解决你的问题,请参考以下文章
Angular Material - Mat-Dialog - 改变背景模糊/变暗效果
Android PopupWindow 活动时背景模糊或变暗
使用bootstrap框架建立modal对话框,对话框并不能够正常显示(只会背景变暗,对话框完全不显示)