Home
last modified time | relevance | path

Searched refs:mColorPickerDialog (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
DSelectCalendarsSyncAdapter.java53 private CalendarColorPickerDialog mColorPickerDialog; field in SelectCalendarsSyncAdapter
92 mColorPickerDialog = (CalendarColorPickerDialog) in SelectCalendarsSyncAdapter()
199 if (mColorPickerDialog == null) { in getView()
200 mColorPickerDialog = CalendarColorPickerDialog.newInstance(mData[position].id, in getView()
203 mColorPickerDialog.setCalendarId(mData[position].id); in getView()
206 if (!mColorPickerDialog.isAdded()) { in getView()
207 mColorPickerDialog.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG); in getView()
DSelectCalendarsSimpleAdapter.java57 private CalendarColorPickerDialog mColorPickerDialog; field in SelectCalendarsSimpleAdapter
117 mColorPickerDialog = (CalendarColorPickerDialog) in SelectCalendarsSimpleAdapter()
260 if (mColorPickerDialog == null) { in getView()
261 mColorPickerDialog = CalendarColorPickerDialog.newInstance(mData[position].id, in getView()
264 mColorPickerDialog.setCalendarId(mData[position].id); in getView()
267 if (!mColorPickerDialog.isAdded()) { in getView()
268 mColorPickerDialog.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG); in getView()
DSelectSyncedCalendarsMultiAccountAdapter.java70 private CalendarColorPickerDialog mColorPickerDialog; field in SelectSyncedCalendarsMultiAccountAdapter
230 mColorPickerDialog = (CalendarColorPickerDialog) in SelectSyncedCalendarsMultiAccountAdapter()
350 if (mColorPickerDialog == null) { in bindChildView()
351 mColorPickerDialog = CalendarColorPickerDialog.newInstance(id, mIsTablet); in bindChildView()
353 mColorPickerDialog.setCalendarId(id); in bindChildView()
356 if (!mColorPickerDialog.isAdded()) { in bindChildView()
357 mColorPickerDialog.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG); in bindChildView()
/packages/apps/Calendar/src/com/android/calendar/event/
DEditEventFragment.java127 private EventColorPickerDialog mColorPickerDialog; field in EditEventFragment
396 if (mColorPickerDialog == null) {
397 mColorPickerDialog = EventColorPickerDialog.newInstance(colors,
399 mColorPickerDialog.setOnColorSelectedListener(EditEventFragment.this);
401 mColorPickerDialog.setCalendarColor(mModel.getCalendarColor());
402 mColorPickerDialog.setColors(colors, mModel.getEventColor());
406 if (!mColorPickerDialog.isAdded()) {
407 mColorPickerDialog.show(fragmentManager, COLOR_PICKER_DIALOG_TAG);
454 mColorPickerDialog = (EventColorPickerDialog) getActivity().getFragmentManager() in onActivityCreated()
456 if (mColorPickerDialog != null) { in onActivityCreated()
[all …]
/packages/apps/Calendar/src/com/android/calendar/
DEventInfoFragment.java365 private EventColorPickerDialog mColorPickerDialog; field in EventInfoFragment
719 mColorPickerDialog = (EventColorPickerDialog) activity.getFragmentManager() in onActivityCreated()
721 if (mColorPickerDialog != null) { in onActivityCreated()
722 mColorPickerDialog.setOnColorSelectedListener(this); in onActivityCreated()
1256 if (mColorPickerDialog == null) { in showEventColorPickerDialog()
1257 mColorPickerDialog = EventColorPickerDialog.newInstance(mColors, mCurrentColor, in showEventColorPickerDialog()
1259 mColorPickerDialog.setOnColorSelectedListener(this); in showEventColorPickerDialog()
1263 if (!mColorPickerDialog.isAdded()) { in showEventColorPickerDialog()
1264 mColorPickerDialog.show(fragmentManager, COLOR_PICKER_DIALOG_TAG); in showEventColorPickerDialog()