|
@@ -15,76 +15,74 @@ import kotlinx.android.synthetic.main.activity_theme.*
|
|
|
@SuppressLint("SetTextI18n")
|
|
|
class ThemeActivity : AppCompatActivity()
|
|
|
{
|
|
|
- override fun onCreate(savedInstanceState: Bundle?)
|
|
|
- {
|
|
|
- super.onCreate(savedInstanceState)
|
|
|
- setContentView(R.layout.activity_theme)
|
|
|
-
|
|
|
- // load shared preferences file
|
|
|
- val pref = this.getPreferences(Context.MODE_PRIVATE)
|
|
|
- // retrieve user dark mode setting
|
|
|
- val last_dark_setting = pref.getInt("dark", -1)
|
|
|
- // set radio button based on this
|
|
|
- if (last_dark_setting == -1)
|
|
|
- {
|
|
|
- // no preference, use default
|
|
|
- themeRadioGroup.check(radioButtonDefault.id)
|
|
|
- }
|
|
|
- else if (last_dark_setting == 0)
|
|
|
- {
|
|
|
- // user wants light mode, loser that they are
|
|
|
- themeRadioGroup.check(radioButtonLight.id)
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- // we have a dark moder!
|
|
|
- themeRadioGroup.check(radioButtonDark.id)
|
|
|
- }
|
|
|
+ override fun onCreate(savedInstanceState: Bundle?)
|
|
|
+ {
|
|
|
+ super.onCreate(savedInstanceState)
|
|
|
+ setContentView(R.layout.activity_theme)
|
|
|
|
|
|
- // define objects, set text values for em
|
|
|
- radioButtonDefault.setText("System Default")
|
|
|
- radioButtonDark.setText("Dark")
|
|
|
- radioButtonLight.setText("Light")
|
|
|
+ // load shared preferences file
|
|
|
+ val pref = this.getSharedPreferences("prefs", Context.MODE_PRIVATE)
|
|
|
+ // retrieve user dark mode setting
|
|
|
+ val last_dark_setting = pref.getInt("dark", -1)
|
|
|
+ // set radio button based on this
|
|
|
+ if (last_dark_setting == -1)
|
|
|
+ {
|
|
|
+ // no preference, use default
|
|
|
+ themeRadioGroup.check(radioButtonDefault.id)
|
|
|
+ } else if (last_dark_setting == 0)
|
|
|
+ {
|
|
|
+ // user wants light mode, loser that they are
|
|
|
+ themeRadioGroup.check(radioButtonLight.id)
|
|
|
+ } else
|
|
|
+ {
|
|
|
+ // we have a dark moder!
|
|
|
+ themeRadioGroup.check(radioButtonDark.id)
|
|
|
+ }
|
|
|
|
|
|
- // set system theme based on active user choice
|
|
|
- fun setTheme()
|
|
|
- {
|
|
|
- val active = findViewById<RadioButton>(themeRadioGroup.checkedRadioButtonId)
|
|
|
- when (active)
|
|
|
- {
|
|
|
- radioButtonDefault ->
|
|
|
- {
|
|
|
- with (pref.edit())
|
|
|
- {
|
|
|
- putInt("dark", -1)
|
|
|
- apply()
|
|
|
- }
|
|
|
- AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)
|
|
|
- }
|
|
|
- radioButtonDark ->
|
|
|
- {
|
|
|
- with (pref.edit())
|
|
|
- {
|
|
|
- putInt("dark", 1)
|
|
|
- apply()
|
|
|
- }
|
|
|
- AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
|
|
|
- }
|
|
|
- radioButtonLight ->
|
|
|
- {
|
|
|
- with (pref.edit())
|
|
|
- {
|
|
|
- putInt("dark", 0)
|
|
|
- apply()
|
|
|
- }
|
|
|
- AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
|
|
|
- }
|
|
|
- }
|
|
|
- themeStatus.setText(active.getText())
|
|
|
- }
|
|
|
+ // define objects, set text values for em
|
|
|
+ radioButtonDefault.setText("System Default")
|
|
|
+ radioButtonDark.setText("Dark")
|
|
|
+ radioButtonLight.setText("Light")
|
|
|
|
|
|
- // set the listener for changes to the radio button group
|
|
|
- setTheme()
|
|
|
- themeRadioGroup.setOnCheckedChangeListener { _, _ -> setTheme()}
|
|
|
+ // set system theme based on active user choice
|
|
|
+ fun setTheme()
|
|
|
+ {
|
|
|
+ val active = findViewById<RadioButton>(themeRadioGroup.checkedRadioButtonId)
|
|
|
+ when (active)
|
|
|
+ {
|
|
|
+ radioButtonDefault ->
|
|
|
+ {
|
|
|
+ with(pref.edit())
|
|
|
+ {
|
|
|
+ putInt("dark", -1)
|
|
|
+ apply()
|
|
|
+ }
|
|
|
+ ThemeHelper.apply(-1)
|
|
|
+ }
|
|
|
+ radioButtonDark ->
|
|
|
+ {
|
|
|
+ with(pref.edit())
|
|
|
+ {
|
|
|
+ putInt("dark", 1)
|
|
|
+ apply()
|
|
|
+ }
|
|
|
+ ThemeHelper.apply(1)
|
|
|
+ }
|
|
|
+ radioButtonLight ->
|
|
|
+ {
|
|
|
+ with(pref.edit())
|
|
|
+ {
|
|
|
+ putInt("dark", 0)
|
|
|
+ apply()
|
|
|
+ }
|
|
|
+ ThemeHelper.apply(0)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ themeStatus.setText(active.getText())
|
|
|
}
|
|
|
+
|
|
|
+ // set the listener for changes to the radio button group
|
|
|
+ setTheme()
|
|
|
+ themeRadioGroup.setOnCheckedChangeListener { _, _ -> setTheme() }
|
|
|
+ }
|
|
|
}
|