J'ai une simple liste avec un sélecteur de liste comme ça.
<ListView android:id="@+id/list" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_below="@+id/round"
android:listSelector="#99000000" android:clickable="true" android:cacheColorHint="#00000000" android:background="#00000000">
</ListView>
Comme vous pouvez le voir avec android: listSelector = "# 99000000" mais la couleur "black alpha" est appliquée à toute la liste, pas à l'élément sélectionné.
C'est donc ce que j'ai maintenant mais la liste entière devient noire
:: listview_background.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:state_focused="true"
android:drawable="@drawable/list_normal" />
<item android:state_pressed="true"
android:drawable="@drawable/list_pressed" />
<item android:state_focused="true"
android:drawable="@drawable/list_active" />
</selector>
:: couleurs.xml
<resources>
<drawable name="list_normal">#96FFFFFF</drawable>
<drawable name="list_active">#66000000</drawable>
<drawable name="list_pressed">#CA000000</drawable>
</resources>
:: le tag xml dans ma liste
android:listSelector="@drawable/listview_background"