Merge "Clarify documentation of AdapterView.OnItemSelectedListener Bug #5331587"

This commit is contained in:
Romain Guy
2011-09-16 16:20:17 -07:00
committed by Android (Google) Code Review

View File

@@ -338,8 +338,10 @@ public abstract class AdapterView<T extends Adapter> extends ViewGroup {
*/ */
public interface OnItemSelectedListener { public interface OnItemSelectedListener {
/** /**
* Callback method to be invoked when an item in this view has been * <p>Callback method to be invoked when an item in this view has been
* selected. * 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.</p>
* *
* Impelmenters can call getItemAtPosition(position) if they need to access the * Impelmenters can call getItemAtPosition(position) if they need to access the
* data associated with the selected item. * data associated with the selected item.