android.widget.AbsListView.MultiChoiceModeListener |
A MultiChoiceModeListener receives events for
CHOICE_MODE_MULTIPLE_MODAL
.
It acts as the
ActionMode.Callback
for the selection mode and also receives
onItemCheckedStateChanged(ActionMode, int, long, boolean)
events when the user
selects and deselects list items.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Called when an item is checked or unchecked during selection mode.
|
[Expand]
Inherited Methods
|
|||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.view.ActionMode.Callback
|
Called when an item is checked or unchecked during selection mode.
mode |
The
ActionMode
providing the selection mode
|
---|---|
position | Adapter position of the item that was checked or unchecked |
id | Adapter ID of the item that was checked or unchecked |
checked |
true
if the item is now checked,
false
if the item is now unchecked.
|