Home | History | Annotate | Download | only in socialwidget

Lines Matching refs:Editor

21 import android.content.SharedPreferences.Editor;
51 final Editor editor = settings.edit();
56 editor.remove(getPreferenceKey(widgetId));
58 editor.apply();
79 final Editor editor = settings.edit();
81 editor.remove(getPreferenceKey(widgetId));
83 editor.putString(getPreferenceKey(widgetId), contactLookupUri.toString());
85 editor.apply();
99 final SharedPreferences.Editor editor = settings.edit();
109 editor.putString(PREFERENCES_PREFIX + key, value);
112 editor.apply();