views:

49

answers:

1

I am using a couple of ListView elements in my app. In all cases, it doesn't highlight the selected item when I click/touch it, but I can use the trackball to scroll up and down, and can see the orange highlighted color then. How do I fix this?

For e.g., one of them is a LinearLayout with two TextViews in it.

A: 

Setting the background to the list_selector_background for the parent Layout element for each of the items did the trick.

android:background="@android:drawable/list_selector_background"
Vijay Kotari