Reputation: 468
In Application class I have added:
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
Why is it not working ?
Upvotes: 4
Views: 924
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