How to set the color of an Android ScrollView fading edge?

前端 未结 7 779
攒了一身酷
攒了一身酷 2020-12-04 18:16

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

7条回答
  •  爱一瞬间的悲伤
    2020-12-04 18:31

    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);
    }
    

提交回复
热议问题