Package icyllis.modernui.widget
Interface AdapterView.OnItemSelectedListener
- Enclosing class:
AdapterView<T extends Adapter>
public static interface AdapterView.OnItemSelectedListener
Interface definition for a callback to be invoked when
an item in this view has been selected.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onItemSelected
(AdapterView<?> parent, View view, int position, long id) Callback method to be invoked when an item in this view has been selected.void
onNothingSelected
(AdapterView<?> parent) Callback method to be invoked when the selection disappears from this view.
-
Method Details
-
onItemSelected
Callback method to be invoked when an item in this view has been selected. This callback is invoked only when the newly selected position is different from the previously selected position or if there was no selected item.
Implementers can call getItemAtPosition(position) if they need to access the data associated with the selected item.
- Parameters:
parent
- The AdapterView where the selection happenedview
- The view within the AdapterView that was clickedposition
- The position of the view in the adapterid
- The row id of the item that is selected
-
onNothingSelected
Callback method to be invoked when the selection disappears from this view. The selection can disappear for instance when touch is activated or when the adapter becomes empty.- Parameters:
parent
- The AdapterView that now contains no selected item.
-