我的Android Activity上有一个ListView。当我滚动它时,每个文本的背景将是黑色的,直到我点击其中一个项目。我怎么解决它?
我的XML文件是
<ListView android:id="@id/list" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
答案 0 :(得分:2)
在包含列表视图的XML文件中,将缓存颜色提示设置为#00000000
。
例如,
ListView lv = (ListView)findViewById(R.id.listVIew);
lv.setCacheHintColor("#00000000")