setSingleChoiceItems

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. This should be an array type i.e. R.array.foo The list will have a check mark displayed to the right of the text for the checked item. Clicking on an item in the list will not dismiss the dialog. Clicking on a button will dismiss the dialog.

Return

This Builder object to allow for chaining of calls to set methods

Parameters

itemsId

the resource id of an array i.e. R.array.foo

checkedItem

specifies which item is checked. If -1 no items are checked.

listener

notified when an item on the list is clicked. The dialog will not be dismissed when an item is clicked. It will only be dismissed if clicked on a button, if no buttons are supplied it's up to the user to dismiss the dialog.


open fun setSingleChoiceItems(cursor: Cursor, checkedItem: Int, labelColumn: String, listener: DialogInterface.OnClickListener): AlertDialog.Builder(source)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. The list will have a check mark displayed to the right of the text for the checked item. Clicking on an item in the list will not dismiss the dialog. Clicking on a button will dismiss the dialog.

Return

This Builder object to allow for chaining of calls to set methods

Parameters

cursor

the cursor to retrieve the items from.

checkedItem

specifies which item is checked. If -1 no items are checked.

labelColumn

The column name on the cursor containing the string to display in the label.

listener

notified when an item on the list is clicked. The dialog will not be dismissed when an item is clicked. It will only be dismissed if clicked on a button, if no buttons are supplied it's up to the user to dismiss the dialog.


Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. The list will have a check mark displayed to the right of the text for the checked item. Clicking on an item in the list will not dismiss the dialog. Clicking on a button will dismiss the dialog.

Return

This Builder object to allow for chaining of calls to set methods

Parameters

items

the items to be displayed.

checkedItem

specifies which item is checked. If -1 no items are checked.

listener

notified when an item on the list is clicked. The dialog will not be dismissed when an item is clicked. It will only be dismissed if clicked on a button, if no buttons are supplied it's up to the user to dismiss the dialog.


Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. The list will have a check mark displayed to the right of the text for the checked item. Clicking on an item in the list will not dismiss the dialog. Clicking on a button will dismiss the dialog.

Return

This Builder object to allow for chaining of calls to set methods

Parameters

adapter

The ListAdapter to supply the list of items

checkedItem

specifies which item is checked. If -1 no items are checked.

listener

notified when an item on the list is clicked. The dialog will not be dismissed when an item is clicked. It will only be dismissed if clicked on a button, if no buttons are supplied it's up to the user to dismiss the dialog.