Mujeeb Rahaman T
Mujeeb Rahaman T

Reputation: 468

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

In Application class I have added:

 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

Why is it not working ?

Upvotes: 4

Views: 924

Answers (1)

Mujeeb Rahaman T
Mujeeb Rahaman T

Reputation: 468

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>

Upvotes: 6

Related Questions