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

前端 未结 7 770
攒了一身酷
攒了一身酷 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:24

    EDIT: this does not answer the question, which was asking for ScrollView. This answer only works on AbsListView and descendants (including ListView).


    Fading edge color is controlled by the android:cacheColorHint attribute.

    E.g.:

    will set the background to white, and the cacheColorHint is used to draw the fading edge color -- in this case, it would be black.

提交回复
热议问题