所以我最近加入了 Kotlin 火车,我有一个片段可以改变我的 android 应用程序的主题,我在成功切换主题后重新启动片段,然后从 MainActivity 使用片段中之前设置的包重新打开片段。
所有这些工作。我遇到的问题是我也尝试在切换主题后更改 android:summary 字段,但是每次活动重新启动时,它都会切换回默认摘要值
我可能做错了什么?
SettingsFragment.kt
findPreference(getString(R.string.key_dark_theme)).setOnPreferenceChangeListener { preference, newValue ->
preference.isEnabled = false
val switchPreference = preference as SwitchPreference
val intent = activity!!.intent
val tempBundle = Bundle()
intent.putExtra("bundle", tempBundle)
Thread {
val changeTheme = newValue as Boolean
try {
activity!!.runOnUiThread {
switchPreference.isChecked = changeTheme
switchPreference.summary = "On" //this clears once I restart the activity
activity!!.finish()
activity!!.startActivity(intent)
activity!!.overridePendingTransition(R.anim.push_left_in, R.anim.push_left_out)
}
} catch (e: Exception) {
e.printStackTrace()
}
activity!!.runOnUiThread {
switchPreference.isEnabled = true
}
}.start()
false
}