1
0
Fork 0

No issues: Set ThemeFragment title in onResume (#2801)

master
Emily Kager 2019-05-23 21:30:29 -07:00 committed by Jeff Boek
parent a80053547e
commit c6ac791609
1 changed files with 2 additions and 6 deletions

View File

@ -18,18 +18,14 @@ class ThemeFragment : PreferenceFragmentCompat() {
private lateinit var radioAutoBatteryTheme: RadioButtonPreference
private lateinit var radioFollowDeviceTheme: RadioButtonPreference
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
(activity as AppCompatActivity).title = getString(R.string.preferences_theme)
(activity as AppCompatActivity).supportActionBar?.show()
}
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
setPreferencesFromResource(R.xml.theme_preferences, rootKey)
}
override fun onResume() {
super.onResume()
(activity as AppCompatActivity).title = getString(R.string.preferences_theme)
(activity as AppCompatActivity).supportActionBar?.show()
setupPreferences()
}