'In Android Studio, how can I change the colour of the effect that appears at the end of a Scroll View?

How can I change the colour of the effect that appears at the end of a Scroll View? enter image description here



Solution 1:[1]

https://developer.android.com/reference/android/widget/ScrollView#setBottomEdgeEffectColor(int)

something like

scrollview.setBottomEdgeEffectColor(0xFF4CAF50);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 REInVent