Dark_Clouds_369
Dark_Clouds_369

Reputation: 848

Force disable dark mode in android application not working

I have force disable dark mode in my android application but still the app is in dark mode when my phone is in dark mode

I have also changed the theme for both light and night modes to light theme with no action bar but its not working

Upvotes: 1

Views: 2128

Answers (1)

Rahul Pandey
Rahul Pandey

Reputation: 570

1)Add this line in each activity just below onCreate

AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

OR

  1. add this line in your themes under style section
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>

Upvotes: 5

Related Questions