我希望对话框后面的背景模糊不清。我使用了这段代码,但是它整个背景都是黑色而不是模糊
dialog = new Dialog(context,R.style.Theme_Dialog_Translucent);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
答案 0 :(得分:1)
请尝试这样:
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.dimAmount=0.0f;
dialog.getWindow().setAttributes(lp);
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
答案 1 :(得分:1)
我认为您需要在styles.xml
文件夹下使用自定义样式创建res - values
。
<style name="Theme.D1NoTitleDim" parent="android:style/Theme.Translucent">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:background">@android:color/transparent</item>
</style>
然后在对话框中使用此样式
dialog = new Dialog(context,style);