不推荐使用setBackgroundColor

时间:2016-09-30 13:01:22

标签: java android android-recyclerview recycler-adapter

我在RecyclerAdapter的onBindViewHolder中有一个视图项。由于不推荐使用setBackgroundColor,我该怎么做呢?

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

1 个答案:

答案 0 :(得分:5)

由于getResources().getColor(bgColor)被剥夺了

使用下面的

ContextCompat.getColor(this, R.color.bgcolor)