I have an Android scrollview with a white background. The fading edge is a white translucent gradient. I would like to change it be black instead of white. I have a ListView
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); }