public static interface IcsAdapterView.OnItemSelectedListener
Modifier and Type | Method and Description |
---|---|
void |
onItemSelected(IcsAdapterView<?> parent,
android.view.View view,
int position,
long id)
Callback method to be invoked when an item in this view has been
selected.
|
void |
onNothingSelected(IcsAdapterView<?> parent)
Callback method to be invoked when the selection disappears from this
view.
|
void onItemSelected(IcsAdapterView<?> parent, android.view.View view, int position, long id)
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.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 selectedvoid onNothingSelected(IcsAdapterView<?> parent)
parent
- The AdapterView that now contains no selected item.Copyright © 2011–2014. All rights reserved.