user2991389
user2991389

Reputation: 11

change fading edge color in List view android

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

Answers (1)

Subramanian Ramsundaram
Subramanian Ramsundaram

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

Related Questions