android dialog 不变暗

<resources>
    <style name="dialog" parent="@android:style/Theme.Dialog">
        <item name="android:backgroundDimEnabled">false</item><!--activity不变暗-->
    </style>
</resources>

Dialog = new Dialog(Activity, R.style.dialog);

原文地址:https://www.cnblogs.com/qiengo/p/2499419.html