我知道有很多关于ListView项目突出显示的问题,我已经设法禁用了背景颜色变化(通过将其设置为透明),但现在字体本身正在改变颜色。我的字体颜色为灰色,我希望它即使在选择ListView时仍保持这种状态,但目前它正在变为黑色(因为,我认为,即使没有突出显示,字体颜色仍然存在)。如何禁用此功能?
<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>