Here is what worked for me:
<ScrollView
android:requiresFadingEdge="vertical"
android:fadingEdgeLength="150dp">
Or instead in your code, you could do the following:
ScrollView scroll = findById(...);
scroll.setVerticalFadingEdgeEnabled(true);
// Or `scroll.setHorizontalFadingEdgeEnabled(true)`.
scroll.setFadingEdgeLength(150);