How to change the fading orange color In ExpandableListView?
How can I c开发者_如何学编程hange 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);
精彩评论