ListView black onScroll

This is my first time on this site. I will ask you to help me solve the problem.

I have a ListView for my android activity. When I scroll through it, the background of each text will be black until I click on one of the elements. How can I fix this ???

IMG BEFORE SCROLLING: 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

+3


source to share


1 answer


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

eg



ListView lv = (ListView)findViewById(R.id.listVIew);
lv.setCacheHintColor("#00000000")

      

+6


source







All Articles