Home | History | Annotate | Download | only in com.example.android.messagingservice

Lines Matching refs:context

19 import android.content.Context;
38 public static void logMessage(Context context, String message) {
39 SharedPreferences prefs = getPrefs(context);
46 public static SharedPreferences getPrefs(Context context) {
47 return context.getSharedPreferences(PREF_MESSAGE, Context.MODE_PRIVATE);
50 public static String getAllMessages(Context context) {
51 return getPrefs(context).getString(LOG_KEY, "");
54 public static void clear(Context context) {
55 getPrefs(context).edit().remove(LOG_KEY).apply();