tags:

views:

30

answers:

2

I have list view to display data,it dispalys well with white color background initially,but when i scrolled the background of list view has been changed to black,when i stop scrolling it get white background,i need to have white color background when i scrolled,how can i fix it.

Thanks in advance.

+1  A: 

The xml attribute android:cacheColorHint for your ListView is what you are looking for. Explained in the documentation: http://developer.android.com/resources/articles/listview-backgrounds.html

WarrenFaith
+1,thanks for your replay.
MGSenthil
A: 

add a attribute on you list view tag. android:colorCacheHint="#00000000"

Praveen Chandrasekaran
thanks i got the view ,i needed from your help.
MGSenthil