I have a linear layout in which each row is inflated programatically and I want the rows to behave like the ListView when clicked on. That is, I want the row to highlight in the exact same way/colour that the default ListView does. How would I go about doing this?
|
feedback
|
|
Ok iv finally figured out how to do this...basically it is done using a selector like the color selector linked by st0le except instead of 'color' use a drawable for the states and you can refer to the default list drawable that is used in ListView by this:
and using this xml as the background for my View. All the public default drawables can be found here: http://developer.android.com/reference/android/R.drawable.html | |||
|
feedback
|
|
This might be a good place to start looking. Although, i would advise you to use the ListView itself, rather than implementing it again. | |||||||||
feedback
|
|
I was able to do the same with a text view that I wanted to behave like a list item by using:
| |||
|
feedback
|