How To Change The Fading Orange Color In Expandablelistview?
How can I change the fading orange color in ExpandableListView while scrolling ? Thanks
Solution 1:
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);
Post a Comment for "How To Change The Fading Orange Color In Expandablelistview?"