Lines Matching refs:items

607          * Set a list of items to be displayed in the dialog as the content, you will be notified of the
619 * Set a list of items to be displayed in the dialog as the content, you will be notified of the
624 public Builder setItems(CharSequence[] items, final OnClickListener listener) {
625 P.mItems = items;
631 * Set a list of items, which are supplied by the given {@link ListAdapter}, to be
635 * @param adapter The {@link ListAdapter} to supply the list of items
647 * Set a list of items, which are supplied by the given {@link Cursor}, to be
651 * @param cursor The {@link Cursor} to supply the list of items
667 * Set a list of items to be displayed in the dialog as the content,
675 * @param checkedItems specifies which items are checked. It should be null in which case no
676 * items are checked. If non null it must be exactly the same length as the array of
677 * items.
694 * Set a list of items to be displayed in the dialog as the content,
700 * @param items the text of the items to be displayed in the list.
701 * @param checkedItems specifies which items are checked. It should be null in which case no
702 * items are checked. If non null it must be exactly the same length as the array of
703 * items.
710 public Builder setMultiChoiceItems(CharSequence[] items, boolean[] checkedItems,
712 P.mItems = items;
720 * Set a list of items to be displayed in the dialog as the content,
726 * @param cursor the cursor used to provide the items.
749 * Set a list of items to be displayed in the dialog as the content, you will be notified of
756 * @param checkedItem specifies which item is checked. If -1 no items are checked.
773 * Set a list of items to be displayed in the dialog as the content, you will be notified of
778 * @param cursor the cursor to retrieve the items from.
779 * @param checkedItem specifies which item is checked. If -1 no items are checked.
799 * Set a list of items to be displayed in the dialog as the content, you will be notified of
804 * @param items the items to be displayed.
805 * @param checkedItem specifies which item is checked. If -1 no items are checked.
812 public Builder setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener) {
813 P.mItems = items;
821 * Set a list of items to be displayed in the dialog as the content, you will be notified of
826 * @param adapter The {@link ListAdapter} to supply the list of items
827 * @param checkedItem specifies which item is checked. If -1 no items are checked.