我有一个应用于ListView的背景颜色
<style name="CKButtons">
<item name="android:windowBackground">@color/window_background</item>
</style>
但每次滚动列表时,背景颜色都会变回系统默认值(黑色).当滚动停止时,颜色返回@ color / window_background.
该样式在AndroidManifest.xml中应用:
<activity android:name=".event.EventList"
android:theme="@style/CKButtons"></activity>
我的ListView看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/android:list"/>
<TextView
android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/eventlist_no_items"/>
</LinearLayout>
我怎样才能防止这种情况发生?
解决方法:
您可以在ListView上使用属性android:cacheColorHint来设置RGB值,该值应在触摸时用作列表项的背景颜色.
有关详细信息,请参阅:http://android-developers.blogspot.com/2009/01/why-is-my-list-black-android.html