Home | History | Annotate | Download | only in editor

Lines Matching refs:choices

45         /** If set, show choices to take a picture with the camera, or pick one from the gallery. */
48 * If set, modifies the wording in the choices for TAKE_OR_PICK_PHOTO
75 // Build choices, depending on the current mode. We assume this Dialog is never called
76 // if there are NO choices (e.g. a read-only picture is already super-primary)
77 final ArrayList<ChoiceListItem> choices = new ArrayList<ChoiceListItem>(4);
80 choices.add(new ChoiceListItem(ChoiceListItem.ID_USE_AS_PRIMARY,
85 choices.add(new ChoiceListItem(ChoiceListItem.ID_REMOVE,
95 choices.add(new ChoiceListItem(ChoiceListItem.ID_TAKE_PHOTO, takePhotoString));
96 choices.add(new ChoiceListItem(ChoiceListItem.ID_PICK_PHOTO, pickPhotoString));
100 R.layout.select_dialog_item, choices);
106 final ChoiceListItem choice = choices.get(position);