Home | History | Annotate | Download | only in protips

Lines Matching full:pref

73         SharedPreferences pref = context.getSharedPreferences(PREFS_NAME, 0);
74 mMessage = pref.getInt(PREFS_TIP_NUMBER, 0);
75 mTipSet = pref.getInt(PREFS_TIP_SET, 0);
125 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
126 pref.putInt(PREFS_TIP_NUMBER, mMessage);
127 pref.apply();
138 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
139 pref.putInt(PREFS_TIP_NUMBER, mMessage);
140 pref.putInt(PREFS_TIP_SET, mTipSet);
141 pref.apply();