pull/32/head
gedoor 6 years ago
parent 38a981c623
commit 63310bc1e7
  1. 6
      app/src/main/java/io/legado/app/ui/config/ThemeConfigFragment.kt

@ -40,7 +40,7 @@ class ThemeConfigFragment : PreferenceFragmentCompat(), SharedPreferences.OnShar
LiveEventBus.get().with(Bus.recreate).post("") LiveEventBus.get().with(Bus.recreate).post("")
Handler().postDelayed({ activity?.recreate() }, 100) Handler().postDelayed({ activity?.recreate() }, 100)
} }
"colorPrimary", "colorAccent", "colorBackground" -> "colorPrimary", "colorAccent", "colorBackground" -> {
if (backgroundIsDark(sharedPreferences)) { if (backgroundIsDark(sharedPreferences)) {
activity?.let { activity?.let {
AlertDialog.Builder(it) AlertDialog.Builder(it)
@ -59,7 +59,8 @@ class ThemeConfigFragment : PreferenceFragmentCompat(), SharedPreferences.OnShar
} else { } else {
upTheme(false) upTheme(false)
} }
"colorPrimaryNight", "colorAccentNight", "colorBackgroundNight" -> }
"colorPrimaryNight", "colorAccentNight", "colorBackgroundNight" -> {
if (backgroundIsLight(sharedPreferences)) { if (backgroundIsLight(sharedPreferences)) {
activity?.let { activity?.let {
AlertDialog.Builder(it) AlertDialog.Builder(it)
@ -78,6 +79,7 @@ class ThemeConfigFragment : PreferenceFragmentCompat(), SharedPreferences.OnShar
} else { } else {
upTheme(true) upTheme(true)
} }
}
} }
} }

Loading…
Cancel
Save