Android ListView background colors always showing grey

前端 未结 6 1050
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-04 23:27

I have a ListView that I\'m populating from a custom ListAdapter. Inside the Adapter (in the getView(int, View, ViewGroup) method) I\'m setting the background color of the V

6条回答
  •  情歌与酒
    2021-01-05 00:02

    You must set the cacheColorHint attribute to the desired background color for your list. This is a required workaround to account for a drawing optimization Android performs on lists.

    See here: link text

提交回复
热议问题