4

This is my first time on this site. I will ask you to help me to resolve a bug.

I have a ListView on my Android Activity. When i scroll it the background of each text will be black until i click on one of the items. How i can fix it???

IMG BEFORE SCROLL: http://gestorespese.altervista.org/Schermata_del_2012-04-01_11_43_27.png IMG AFTER SCROLL: http://gestorespese.altervista.org/Schermata_del_2012-04-01_11_43_34.png

Twing90
  • 407
  • 2
  • 5
  • 15

1 Answers1

6

In Xml file which contains the listview Cache color hint to #00000000

for example

ListView lv = (ListView)findViewById(R.id.listVIew);
lv.setCacheHintColor("#00000000")
dldnh
  • 8,923
  • 3
  • 40
  • 52
Ishu
  • 5,357
  • 4
  • 16
  • 17