需求描述:在Dialog背景透明的情况下,允许Dialog透明区域下的Window获取点击事件。(可能需求有点特殊吧,需要2个Dialog来处理)
简单吐槽一下,这个功能以前做过,太久了就忘记了。最初思路就定在Window的属性上,找了很久没发现怎么去设置。
没想到需要通过WindowManager.LayoutParams,里面有挺多属性可用的。
首先需要设置Dialog透明属性:
1、在Styles.xml中添加
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@color/transparent</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
2、继承Dialog的自定义Dialog中添加
设置style
public SelectdDialog(@NonNull Context context) {
super(context, R.style.dialog);
this.context = context;
}
设置Window属性
Window window = getWindow();
WindowManager.LayoutParams layoutParams = window.getAttributes();
layoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE; //核心代码是这个属性。
window.setAttributes(layoutParams);
window.setDimAmount(0f);
setCanceledOnTouchOutside(false);
PS:附上WindowManager.LayoutParams的各种flag含义,就不重复写了。
https://www.jianshu.com/p/c91448e1c7d1