2

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?

My XML file is

<ListView android:id="@id/list" android:layout_width="fill_parent"
          android:layout_height="fill_parent" /> 
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Shankar Agarwal
  • 34,573
  • 7
  • 66
  • 64

1 Answers1

2

In the XML file, which contains the listview, set the cache color hint to #00000000.

For example,

ListView lv = (ListView)findViewById(R.id.listVIew); 
lv.setCacheHintColor("#00000000")
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Ishu
  • 5,357
  • 4
  • 16
  • 17