OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mColorPickerDialog
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java
53
private CalendarColorPickerDialog
mColorPickerDialog
;
92
mColorPickerDialog
= (CalendarColorPickerDialog)
199
if (
mColorPickerDialog
== null) {
200
mColorPickerDialog
= CalendarColorPickerDialog.newInstance(mData[position].id,
203
mColorPickerDialog
.setCalendarId(mData[position].id);
206
if (!
mColorPickerDialog
.isAdded()) {
207
mColorPickerDialog
.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG);
SelectCalendarsSimpleAdapter.java
57
private CalendarColorPickerDialog
mColorPickerDialog
;
117
mColorPickerDialog
= (CalendarColorPickerDialog)
260
if (
mColorPickerDialog
== null) {
261
mColorPickerDialog
= CalendarColorPickerDialog.newInstance(mData[position].id,
264
mColorPickerDialog
.setCalendarId(mData[position].id);
267
if (!
mColorPickerDialog
.isAdded()) {
268
mColorPickerDialog
.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG);
SelectSyncedCalendarsMultiAccountAdapter.java
70
private CalendarColorPickerDialog
mColorPickerDialog
;
230
mColorPickerDialog
= (CalendarColorPickerDialog)
350
if (
mColorPickerDialog
== null) {
351
mColorPickerDialog
= CalendarColorPickerDialog.newInstance(id, mIsTablet);
353
mColorPickerDialog
.setCalendarId(id);
356
if (!
mColorPickerDialog
.isAdded()) {
357
mColorPickerDialog
.show(mFragmentManager, COLOR_PICKER_DIALOG_TAG);
/packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java
127
private EventColorPickerDialog
mColorPickerDialog
;
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()
456
if (
mColorPickerDialog
!= null)
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java
365
private EventColorPickerDialog
mColorPickerDialog
;
719
mColorPickerDialog
= (EventColorPickerDialog) activity.getFragmentManager()
721
if (
mColorPickerDialog
!= null) {
722
mColorPickerDialog
.setOnColorSelectedListener(this);
[
all
...]
Completed in 63 milliseconds