Home
last modified time | relevance | path

Searched refs:clockStylePref (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/settings/
DScreensaverSettingsActivity.kt72 val clockStylePref: ListPreference = pref as ListPreference in onPreferenceChange() constant
73 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() constant
81 clockStylePref.setSummary(clockStylePref.getEntry()) in refresh()
82 clockStylePref.setOnPreferenceChangeListener(this) in refresh()
DScreensaverSettingsActivity.java81 final ListPreference clockStylePref = (ListPreference) pref; in onPreferenceChange() local
82 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() local
90 clockStylePref.setSummary(clockStylePref.getEntry()); in refresh()
91 clockStylePref.setOnPreferenceChangeListener(this); in refresh()
DSettingsActivity.java268 final SimpleMenuPreference clockStylePref = (SimpleMenuPreference) in refresh() local
270 clockStylePref.setSummary(clockStylePref.getEntry()); in refresh()
271 clockStylePref.setOnPreferenceChangeListener(this); in refresh()
DSettingsActivity.kt230 val clockStylePref: SimpleMenuPreference? = findPreference(KEY_CLOCK_STYLE) in refresh() constant
231 clockStylePref?.let { in refresh()