Created
June 10, 2020 11:09
-
-
Save gabriel-TheCode/321cf51ecf3c4946683626355201f67e to your computer and use it in GitHub Desktop.
Apply a theme according to the current theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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