Skip to content

Instantly share code, notes, and snippets.

@umtblbl
Created April 21, 2021 08:45
Show Gist options
  • Save umtblbl/227be87c078b5ef42ef8ad739054e849 to your computer and use it in GitHub Desktop.
Save umtblbl/227be87c078b5ef42ef8ad739054e849 to your computer and use it in GitHub Desktop.
Disable Dark Mode - Android
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
}
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:forceDarkAllowed">false</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment