不推荐使用setBackgroundColor

Mar*_*lic -1 java android recycler-adapter android-recyclerview

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

holder.itemView.setBackgroundColor(mContext.getResources().getColor(bgColor));
Run Code Online (Sandbox Code Playgroud)

Pre*_*aur 5

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

使用下面一个

ContextCompat.getColor(this, R.color.bgcolor)
Run Code Online (Sandbox Code Playgroud)

  • holder.itemview.setBackgroundColor(ContextCompat.getColor(this,R.color.bgColor)); 这将是你的代码 (3认同)