2

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

inor
  • 2,781
  • 2
  • 32
  • 42

1 Answers1

2

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

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491