MIUI 12.01 System Update had changed My App to Night Mode.How to disable Night Mode?

Viewed 799

In Application class I have added:

 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

Why is it not working ?

1 Answers

I have fixed this issue by adding

<item name="android:forceDarkAllowed">false</item>

in Apptheme

 <style name="AppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:forceDarkAllowed">false</item>
</style>
Related