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?
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>