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?

link|improve this question

64% accept rate
feedback

3 Answers

up vote 12 down vote accepted

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:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
    android:drawable="@android:drawable/list_selector_background" />      
</selector>

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

link|improve this answer
Thanks for sharing back once you found it. – Jerry Brady Apr 7 '11 at 3:41
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.

link|improve this answer
I would use the ListView however I need it NOT to scroll and place it inside a ScrolView and that doesn't seem possible(??)...So I ended up trying to implement my own ListView of sort using a LinearLayout. – Kman Jul 16 '10 at 9:29
and thanks or the link...but would it be possible to reference and use the default ListViews selector element rather than create my own? – Kman Jul 16 '10 at 9:31
you could possibly search for the XML inside the Android Source Code...and just copy it over? i'm not sure if you refer the existing selector,otherwise. – st0le Jul 16 '10 at 9:44
Sorry couldnt figur out which one the ListView uses...anyways I tried creating my own but it doesnt seem to be working but am having problems: I want the whole LinearLayout to highlight so what attribute do I set as the colour selector? I tried using textColour but that doesn't seem to work and background makes it crash since I can only set a drawable or single colour as a background :S – Kman Jul 16 '10 at 10:39
feedback

I was able to do the same with a text view that I wanted to behave like a list item by using:

<Textview
....
android:background="@android:drawable/list_selector_background"
/>
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.