All,
I am trying to create a simple application using a ListView which displays an icon and then text next to it. I have gotten the ListView working by extending a Cursor adaptor but I'm having trouble getting ListView to show the selected item after the onListItemClick() event. The selected item is highlighted after I navigate to it with the keyboard, but not the touch.
Here is my onListItemClick() code:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
setSelection(position);
movieId = id;
}

