I have a listview activity in which I set the selector color using the following code. But when I select an item, the whole list gets highlighted with the selector color, which I don't want. Where Am I doing wrong? Any help is appreciated.

ListView lv = getListView();
lv.setFocusableInTouchMode(true);
lv.setBackgroundColor(Color.WHITE);
lv.setSelector(R.color.blue);
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use this way to use Selector
Create a xml in res/drawable and set the color for different event state
Then this xml as Selector
For example, let res/drawable/selector.xml

<?xml version="1.0" encoding="utf-8"?>
   <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"   
    android:drawable="@color/gray" />
</selector>

Then declare gray in your res\values\strings.xml

<color name="gray">#808080</color>

Then set selector as

lv.setSelector( R.drawable.selector);
link|improve this answer
Thanks for your answer Labeeb. But I get the error in xml Error: Color types not allowed (at 'drawable' with value '#808080'). – Vivek Dec 3 '10 at 5:13
I have edited my answer. Check it now – Labeeb P Dec 3 '10 at 5:19
Thanks Labeeb. I followed everything. But I don't see any selector. No selector is visible. What should I do? – Vivek Dec 3 '10 at 5:28
These is the way i used. Try by removing that setBackgroundColor – Labeeb P Dec 3 '10 at 5:48
I tried that. But still it does not work – Vivek Dec 3 '10 at 6:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.