How to disable night mode in my application even if night mode is enable in android 9.0 (pie)?

You can put this, at the first line in the onCreate method of your launcher activity.

AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

Leave a Comment