How can I change background color of ListView
items on a pair-item basis. When I use android:backgroundColor
in the ListView
item layout I can achieve this, however the list selector is no longer visible. I can make the selector visible again by setting drawSelectorOnTop
to true but then the selector overlays the whole item.
Any ideas how to change those background colors and keep the selector?
PS I would rather not change the selector itself.
EDIT: Authors of GMail application have managed to achieve exactly this so it's definitely possible.