Hi,
How can I change the fading orange color in ExpandableListView while scrolling ?
Thanks
Hi,
How can I change the fading orange color in ExpandableListView while scrolling ?
Thanks
I'm not really sure what you want... I guess it is the fading color available on top and on the bottom of your list when you're scrolling.
Then set the property cacheColorHint
to what color you want !
getListView().setCacheColorHint(Color.WHITE);
You can also disable it by doing this :
getListView().setFadingEdgeLength(0);