Searched refs:clockStylePref (Results 1 – 4 of 4) sorted by relevance
72 val clockStylePref: ListPreference = pref as ListPreference in onPreferenceChange() constant73 val index: Int = clockStylePref.findIndexOfValue(newValue as String?) in onPreferenceChange()74 clockStylePref.setSummary(clockStylePref.getEntries().get(index)) in onPreferenceChange()80 val clockStylePref = findPreference(KEY_CLOCK_STYLE) as ListPreference in refresh() constant81 clockStylePref.setSummary(clockStylePref.getEntry()) in refresh()82 clockStylePref.setOnPreferenceChangeListener(this) in refresh()
81 final ListPreference clockStylePref = (ListPreference) pref; in onPreferenceChange() local82 final int index = clockStylePref.findIndexOfValue((String) newValue); in onPreferenceChange()83 clockStylePref.setSummary(clockStylePref.getEntries()[index]); in onPreferenceChange()89 final ListPreference clockStylePref = (ListPreference) findPreference(KEY_CLOCK_STYLE); in refresh() local90 clockStylePref.setSummary(clockStylePref.getEntry()); in refresh()91 clockStylePref.setOnPreferenceChangeListener(this); in refresh()
268 final SimpleMenuPreference clockStylePref = (SimpleMenuPreference) in refresh() local270 clockStylePref.setSummary(clockStylePref.getEntry()); in refresh()271 clockStylePref.setOnPreferenceChangeListener(this); in refresh()
230 val clockStylePref: SimpleMenuPreference? = findPreference(KEY_CLOCK_STYLE) in refresh() constant231 clockStylePref?.let { in refresh()