Android ScrollView with transparency on top and bottom
android, layout, scrollview, transparency
Solution
You just need to add the attributes
android:requiresFadingEdge="vertical"
android:fadingEdgeLength="25dp"
Problem
I'm using a vertical ScrollView in Android. I need to add transparency on the top and the bottom of the ScrollView such that its contents appear disappear gradually. Thanks.