views:

33

answers:

1

I want to give the effect that the ListView has faded from whatever is around it. By default it is set to whatever colour your ListView is. I can adjust the orientation of the FadingEdge and the size of the FadingEdge but not the colour. Is it possible?

+1  A: 

Yes you can !

setCacheColorHint(Color.WHITE);
William Remacle
Thanks, that does do what I want, but it also sets the background colour while scrolling. Is there a way to separate the two?
TehGoose
Give a background color to your cells.
William Remacle