Reputation: 11
I try to change edge color that appears in top/down listview without changing theme.
I want something like that in picture but without using library.
thank you.
https://github.com/AndroidAlliance/EdgeEffectOverride
Upvotes: 1
Views: 962
Reputation: 1347
Use the following attributes in your xml ListView
android:overScrollHeader
android:overScrollFooter
Or you can do it programmatically by:
setOverscrollHeader
setOverscrollFooter
Upvotes: 1