当前位置: 首页 > 知识库问答 >
问题:

setBackgroundColor已弃用[重复]

松增
2023-03-14

我的RecyclerAdapter的onBindViewHolder中有一个视图项。既然setBackgroundColor已被弃用,我应该怎么做?

holder.itemView.setBackgroundColor(mContext.getResources().getColor(bgColor));

共有1个答案

贲凌
2023-03-14

作为getResources()。getColor(bgColor)已取消分级

使用低于1

ContextCompat.getColor(this, R.color.bgcolor)
 类似资料: