Home | History | Annotate | Download | only in content

Lines Matching refs:key

55          * @param key The key of the preference that was changed, added, or
58 void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key);
72 * @param key The name of the preference to modify.
78 Editor putString(String key, String value);
84 * @param key The name of the preference to modify.
89 Editor putStringSet(String key, Set<String> values);
95 * @param key The name of the preference to modify.
101 Editor putInt(String key, int value);
107 * @param key The name of the preference to modify.
113 Editor putLong(String key, long value);
119 * @param key The name of the preference to modify.
125 Editor putFloat(String key, float value);
131 * @param key The name of the preference to modify.
137 Editor putBoolean(String key, boolean value);
148 * @param key The name of the preference to remove.
153 Editor remove(String key);
229 * @return Returns a map containing a list of pairs key/value representing
239 * @param key The name of the preference to retrieve.
248 String getString(String key, String defValue);
253 * @param key The name of the preference to retrieve.
262 Set<String> getStringSet(String key, Set<String> defValues);
267 * @param key The name of the preference to retrieve.
276 int getInt(String key, int defValue);
281 * @param key The name of the preference to retrieve.
290 long getLong(String key, long defValue);
295 * @param key The name of the preference to retrieve.
304 float getFloat(String key, float defValue);
309 * @param key The name of the preference to retrieve.
318 boolean getBoolean(String key, boolean defValue);
323 * @param key The name of the preference to check.
327 boolean contains(String key);