MultiChoiceModeListener
interface MultiChoiceModeListener : ActionMode.Callback
A MultiChoiceModeListener receives events for AbsListView.CHOICE_MODE_MULTIPLE_MODAL
. It acts as the ActionMode.Callback
for the selection mode and also receives onItemCheckedStateChanged(android.view.ActionMode,int,long,boolean)
events when the user selects and deselects list items.
Summary
Public methods |
abstract Unit |
Called when an item is checked or unchecked during selection mode.
|
Public methods
onItemCheckedStateChanged
abstract fun onItemCheckedStateChanged(
mode: ActionMode!,
position: Int,
id: Long,
checked: Boolean
): Unit
Called when an item is checked or unchecked during selection mode.
Parameters |
mode |
ActionMode!: The ActionMode providing the selection mode |
position |
Int: Adapter position of the item that was checked or unchecked |
id |
Long: Adapter ID of the item that was checked or unchecked |
checked |
Boolean: true if the item is now checked, false if the item is now unchecked. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-12-18 UTC.