Dialog整个窗体背景设置为透明

来源:互联网 发布:马航mh370失联真相知乎 编辑:程序博客网 时间:2024/05/17 01:16
<style name="CustomDialogStyle" parent="@android:style/Theme.Dialog">          <item name="android:windowBackground">@android:color/transparent</item>          <item name="android:windowNoTitle">true</item>          <item name="android:backgroundDimEnabled">true</item>  </style>
关键是最后一个属性android:backgroundDimEnabled,设置为true时候,整个Dialog的大背景就是半透明的黑色,如果设置为false就是全透明。