I think the attribute you are looking for is:
android:requiresFadingEdge="horizontal|vertical"
you can search and better understand this attribute from the recycler view's documentation.
The other attribute you are talking about, 'cacheColorHint'
, can be used to match the fading color with that of your background. This attribute is the color upon which the list view is drawn, and is defined as an opaque color, because you don't always have a white background (which I think is the default color... but I'm not sure), the best option is to use a transparent color, "#00000000", as suggested by Romain Guy.
Hopefully this is what you are looking for!
Cheers
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…