How to change the color of overscroll edge and overscroll glow

Ad Dahoun picture Ad Dahoun · Dec 7, 2014 · Viewed 22.4k times · Source

How to Change color of over-scroll edge and over-scroll glow or how to change the white color (default color) of android release 5.0 lollipop?

Answer

Ahmed Hegazy picture Ahmed Hegazy · Dec 7, 2014

The overscroll glow color inherits the primary color value set by android:colorPrimary in your entire app. But If you need to specify different value simply use android:colorEdgeEffect (only available for API 21 and above).

<style name="MyAppTheme" parent="...">
   <item name="android:colorEdgeEffect">@color/my_color</item>
</style>