I know there are a ton of questions regarding the highlighting of ListView items when clicking them already, and I've already managed to disable the background colour change (by setting it to transparent), but now the font itself is changing colour. I have my font colour as grey and I want it to stay that way even when selecting the ListView, but currently it's changing to black (because, I think, even if the highlight doesn't happen, the font colour still does). How can I disable this?
<ListView
android:id="@+id/attendee_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:listSelector="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"
android:scrollingCache="true" >
</ListView>