diff options
| author | 2013-09-17 13:00:49 -0700 | |
|---|---|---|
| committer | 2013-09-17 13:00:49 -0700 | |
| commit | fed60953b09c6cd06f7b9579d103c94c0480ddf0 (patch) | |
| tree | 9a787ee40b8d4587d9d819da01e82a7243ee5775 | |
| parent | 7354b834fc53a9d1885553aea58f632df16a5655 (diff) | |
Update AdapterView.performItemClick() documentation
BUG: 10312828
Change-Id: I085326b336a799eeb26702dc30349e525c4f1023
| -rw-r--r-- | core/java/android/widget/AdapterView.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/widget/AdapterView.java b/core/java/android/widget/AdapterView.java index 31ab0afa4334..a5fad60c439a 100644 --- a/core/java/android/widget/AdapterView.java +++ b/core/java/android/widget/AdapterView.java @@ -280,7 +280,9 @@ public abstract class AdapterView<T extends Adapter> extends ViewGroup { } /** - * Call the OnItemClickListener, if it is defined. + * Call the OnItemClickListener, if it is defined. Performs all normal + * actions associated with clicking: reporting accessibility event, playing + * a sound, etc. * * @param view The view within the AdapterView that was clicked. * @param position The position of the view in the adapter. |