How to set the color of an Android ScrollView fading edge?
If you want a different color fading edge than the background, you have to override the ScrollView’s getSolidColor() method. For example: @Override public int getSolidColor() { return Color.rgb(0x30, 0x30, 0x30); }