Skip to content

Instantly share code, notes, and snippets.

@gabriel-TheCode
Created June 10, 2020 11:09
Show Gist options
  • Select an option

  • Save gabriel-TheCode/321cf51ecf3c4946683626355201f67e to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-TheCode/321cf51ecf3c4946683626355201f67e to your computer and use it in GitHub Desktop.
Apply a theme according to the current theme
if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) {
setTheme(R.style.AppTheme.Base.Night);
} else {
setTheme(R.style.AppTheme.Base.Light);
}
setContentView(R.layout.activity_main);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment