Home | History | Annotate | Download | only in calendar

Lines Matching refs:mResponses

38     String[] mResponses;
47 mResponses = Utils.getQuickResponses(getActivity());
49 if (mResponses != null) {
50 mEditTextPrefs = new EditTextPreference[mResponses.length];
52 Arrays.sort(mResponses);
54 for (String response : mResponses) {
89 if (!mResponses[i].equals(newValue)) {
90 mResponses[i] = (String) newValue;
91 mEditTextPrefs[i].setTitle(mResponses[i]);
92 mEditTextPrefs[i].setText(mResponses[i]);
93 Utils.setSharedPreference(getActivity(), Utils.KEY_QUICK_RESPONSES, mResponses);