Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to apply a custom background to each Listview item via the list selector?

The default selector specifies @android:color/transparent for the state_focused="false" case, but changing this to some custom drawable doesn't affect items that aren't selected. Romain Guy seems to suggest in this answer that this is possible.

I'm currently achieving the same affect by using a custom background on each view and hiding it when the item is selected/focused/whatever so the selector is shown, but it'd be more elegant to have this all defined in one place.

For reference, this is the selector I'm using to try and get this working:

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_focused="false"
        android:drawable="@drawable/list_item_gradient" />

    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
    <item android:state_focused="true" android:state_enabled="false"
        android:state_pressed="true"
        android:drawable="@drawable/list_selector_background_disabled" />
    <item android:state_focused="true" android:state_enabled="false"
        android:drawable="@drawable/list_selector_background_disabled" />

    <item android:state_focused="true" android:state_pressed="true"
        android:drawable="@drawable/list_selector_background_transition" />
    <item android:state_focused="false" android:state_pressed="true"
        android:drawable="@drawable/list_selector_background_transition" />

    <item android:state_focused="true"
        android:drawable="@drawable/list_selector_background_focus" />

</selector>

And this is how I'm setting the selector:

<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:listSelector="@drawable/list_selector_background" />    

Thanks in advance for any help!

share|improve this question

9 Answers

up vote 47 down vote accepted

I've been frustrated by this myself and finally solved it. As Romain Guy hinted to, there's another state, "android:state_selected", that you must use. Use a state drawable for the background of your list item, and use a different state drawable for listSelector of your list:

list_row_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:background="@drawable/listitem_background"
    >
...
</LinearLayout>

listitem_background.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/android:transparent" />
    <item android:drawable="@drawable/listitem_normal" />
</selector>

layout.xml that includes the ListView:

...
<ListView 
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:listSelector="@drawable/listitem_selector"
   />
...

listitem_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/listitem_pressed" />
    <item android:state_focused="true" android:drawable="@drawable/listitem_selected" />
</selector>
share|improve this answer
Thanks for the in-depth response. As I mentioned in my question, this is exactly what I'm doing at the moment as well and it works quite well. – shilgapira May 16 '10 at 9:46
Unfortunately, I am still having problems customizing my list view. I posted my specific issues here: stackoverflow.com/questions/5426385/… ; I would appreciate any input you may have. – nomad311 Mar 24 '11 at 22:38
It doesn't work when you use 9-patch drawables with padding as background. I found the ultimate solution, I think, see my answer – Michał K May 8 '12 at 14:57

The solution by dglmtn doesn't work when you have a 9-patch drawable with padding as background. Strange things happen, I don't even want to talk about it, if you have such a problem, you know them.

Now, If you want to have a listview with different states and 9-patch drawables (it would work with any drawables and colors, I think) you have to do 2 things:

  1. Set the selector for the items in the list.
  2. Get rid of the default selector for the list.

What you should do is first set the row_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_enabled="true" 
     android:state_pressed="true" android:drawable="@drawable/list_item_bg_pressed" />
    <item android:state_enabled="true"
     android:state_focused="true" android:drawable="@drawable/list_item_bg_focused" />
    <item android:state_enabled="true"
     android:state_selected="true" android:drawable="@drawable/list_item_bg_focused" />
    <item
     android:drawable="@drawable/list_item_bg_normal" />
</selector>

Don't forget the android:state_selected. It works like android:state_focused for the list, but it's applied for the list item.

Now apply the selector to the items (row.xml):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/row_selector"
>
...
</RelativeLayout>

Make a selector for the list (to get rid of the default one which ruins the effect) - list_selector.xml:

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

Notice that it makes all the states transparent. That's what I meant by getting rid of the default states.

Last, but not least - apply the selector to the listview:

<ListView
    android:id="@+id/android:list"
    ...
    android:listSelector="@drawable/list_selector"
    />

This should do the thing.

share|improve this answer
1  
+1, I didn't see your answer before, I came across the same result doing it on my own. But thanks for mentioning about the 9-patch drawables I'm sure it could be useful in my future implementations. This should be the best answer because this method is cleaner and maintainable. – IsaacCisneros Jul 30 '12 at 13:53
4  
I'm sorry, but this is the kind of things that make think sometimes why do these damn UI apis have to be so crappy. Android still has a lot to go through. Such basic things shouldn't be such a PITA. – Gubatron Sep 11 '12 at 20:21
this didn't work either for me. ugh. – Gubatron Sep 11 '12 at 20:33
1  
+1 Thank you, thank you, thank you. Jumping through all these hoops to achieve something so basic. All these states are so very confusing. – Moritz Jan 8 at 15:36
finally it worked. Thanks. – Sujit Feb 16 at 19:33

Never ever use a "background color" for your listview rows...

this will block every selector action (was my problem!)

good luck!

share|improve this answer

I'm not sure how to achieve your desired effect through the selector itself -- after all, by definition, there is one selector for the whole list.

However, you can get control on selection changes and draw whatever you want. In this sample project, I make the selector transparent and draw a bar on the selected item.

share|improve this answer
Indeed, it makes total sense for there to only be at most one selector. I guess I am (or was) a bit confused by the existence of the <item android:state_focused="false" android:drawable="@android:color/transparent" /> clause in the default selector. – shilgapira Apr 6 '10 at 9:49
Mark, playing around (having the same problem as Gil) i tried your solution, it's only partial for track ball only, nothingSeelected is called when you touch items using touch only and onItemClicked is fired, if you want something of that sort, most likely you have to keep track of selected and pressed positions inside the ListView and draw what you need in the Item itself (make it custom View) and in dispatchDraw of the ListView. – codeScriber Jan 19 '11 at 16:20
@codeScriber: "nothingSeelected is called when you touch items using touch only and onItemClicked is fired" -- this is perfectly normal behavior, since touch has nothing to do with selection. – CommonsWare Jan 19 '11 at 16:22

instead of: android:drawable="@color/transparent" write android:drawable="@android:color/transparent"

share|improve this answer

The article "Why is my list black? An Android optimization" in the Android Developers Blog has a thorough explanation of why the list background turns black when scrolling. Simple answer: set cacheColorHint on your list to transparent (#00000000).

share|improve this answer

you can write a theme:

<pre>

    android:name=".List10" android:theme="@style/Theme"

theme.xml

<style name="Theme" parent="android:Theme">
        <item name="android:listViewStyle">@style/MyListView</item>
</style>

styles.xml

 <style name="MyListView" parent="@android:style/Widget.ListView">
<item name="android:listSelector">@drawable/my_selector</item>

my_selector is your want to custom selector I am sorry i donot know how to write my code

share|improve this answer
Thanks for the help, but this doesn't directly help in setting the default listitem background via the selector. – shilgapira Apr 6 '10 at 9:48

FrostWire Team over here.

All the selector crap api doesn't work as expected. After trying all the solutions presented in this thread to no good, we just solved the problem at the moment of inflating the ListView Item.

  1. Make sure your item keeps it's state, we did it as a member variable of the MenuItem (boolean selected)

  2. When you inflate, ask if the underlying item is selected, if so, just set the drawable resource that you want as the background (be it a 9patch or whatever). Make sure your adapter is aware of this and that it calls notifyDataChanged() when something has been selected.

        @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View rowView = convertView;
        if (rowView == null) {
            LayoutInflater inflater = act.getLayoutInflater();
            rowView = inflater.inflate(R.layout.slidemenu_listitem, null);
            MenuItemHolder viewHolder = new MenuItemHolder();
            viewHolder.label = (TextView) rowView.findViewById(R.id.slidemenu_item_label);
            viewHolder.icon = (ImageView) rowView.findViewById(R.id.slidemenu_item_icon);
            rowView.setTag(viewHolder);
        }
    
        MenuItemHolder holder = (MenuItemHolder) rowView.getTag();
        String s = items[position].label;
        holder.label.setText(s);
        holder.icon.setImageDrawable(items[position].icon);
    
        //Here comes the magic
        rowView.setSelected(items[position].selected);
    
        rowView.setBackgroundResource((rowView.isSelected()) ? R.drawable.slidemenu_item_background_selected : R.drawable.slidemenu_item_background);
    
        return rowView;
    }
    

It'd be really nice if the selectors would actually work, in theory it's a nice and elegant solution, but it seems like it's broken. KISS.

share|improve this answer

This can be done programmatically as well (of-course). The idea is to swap the background color of the list item when it is selected, and to retain that color until another item is selected.

ListView > onListItemClick():

@Override
public void onListItemClick(ListView l, View v, int position, long id){
    // Set all other list items to their default color
    for (int i = 0; i < l.getAdapter().getCount(); i++) {
        View nv = l.getChildAt(i);
        // Ensure that this view is not null
        if (nv != null)
            nv.setBackgroundResource(R.color.pf_darkGray);
    }
    // Set the selected item to the red color
    v.setBackgroundResource(R.color.pf_red);
}

res > values > colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- pf style -->
    <color name="pf_red">#CB131B</color>
    <color name="pf_darkGray">#404040</color>

</resources>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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