Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
Added in API level 1
public static interface

AdapterView.OnItemSelectedListener

android.widget.AdapterView.OnItemSelectedListener

Class Overview

Interface definition for a callback to be invoked when an item in this view has been selected.

Summary

Public Methods
abstract void , android.view.View, int, long)">onItemSelected ( AdapterView <?> parent, View view, int position, long id)

Callback method to be invoked when an item in this view has been selected.

abstract void )">onNothingSelected ( AdapterView <?> parent)
Callback method to be invoked when the selection disappears from this view.

Public Methods

, android.view.View, int, long)">

public abstract void onItemSelected ( AdapterView <?> parent, View view, int position, long id)

Added in API level 1

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.

Impelmenters can call getItemAtPosition(position) if they need to access the data associated with the selected item.
Parameters
parent The AdapterView where the selection happened
view The view within the AdapterView that was clicked
position The position of the view in the adapter
id The row id of the item that is selected
)">

public abstract void onNothingSelected ( AdapterView <?> parent)

Added in API level 1

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.