Home > Enterprise >  In Android Studio, how can I change the colour of the effect that appears at the end of a Scroll Vie
In Android Studio, how can I change the colour of the effect that appears at the end of a Scroll Vie

Time:04-04

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

CodePudding user response:

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

something like

scrollview.setBottomEdgeEffectColor(0xFF4CAF50);
  • Related