Public 成员函数 | |
| void | onItemSelected (AbMultiColumnAdapterView<?> parent, View view, int position, long id) |
| void | onNothingSelected (AbMultiColumnAdapterView<?> parent) |
Interface definition for a callback to be invoked when an item in this view has been selected.
| void com.ab.view.pullview.AbMultiColumnAdapterView< T extends Adapter >.OnItemSelectedListener.onItemSelected | ( | AbMultiColumnAdapterView<?> | parent, |
| View | view, | ||
| int | position, | ||
| long | id | ||
| ) |
Callback method to be invoked when an item in this view has been selected.
Impelmenters can call getItemAtPosition(position) if they need to access the data associated with the selected item.
| 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 |
| void com.ab.view.pullview.AbMultiColumnAdapterView< T extends Adapter >.OnItemSelectedListener.onNothingSelected | ( | AbMultiColumnAdapterView<?> | parent) |
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.
| parent | The AdapterView that now contains no selected item. |
1.8.4