默认的Android弹出一个Dialog窗口后,背景会变暗。修改设置模块中的亮度设置时,由于弹出的窗口比较小,调节亮度时,预览不明显,所以需要取消背景变暗的效果。
首先在style.xml中添加:
<style name="NobackDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
之后在创建Dialog时应用即可
AlertDialog.Builder builder = new AlertDialog.Builder(mContext,R.style.NobackDialog);