which 'on' event is invoked when the user selects a ListView item by pressing the trackball button? i trapped onKeyDown, onTouchEvent, onTrackballEvent but it's none of those... thanks

link|improve this question

61% accept rate
feedback

1 Answer

up vote 2 down vote accepted

That is a "click" and triggers your OnItemClickListener (or onListItemClick() if you are implementing a ListActivity).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.