Searched refs:restoreValue (Results 1 – 8 of 8) sorted by relevance
157 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument158 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue); in onSetInitialValue()
186 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument187 setChecked(restoreValue ? getPersistedBoolean(mChecked) in onSetInitialValue()
87 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument88 setProgress(restoreValue ? getPersistedInt(mProgress) in onSetInitialValue()
233 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument234 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue); in onSetInitialValue()
293 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument294 setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue); in onSetInitialValue()
277 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument
61 public boolean restoreValue(String name, String value) { in restoreValue() method in SettingsHelper
790 if (settingsHelper.restoreValue(key, value)) { in restoreSettings()