Android SetTextColor

代码中设置字体颜色,以前的写法过时了,现在使用

ContextCompat.getColor(context,R.color.red)
 holder.binding.txtState.setTextColor(ContextCompat.getColor(context,R.color.red));

 

你可能感兴趣的:(android)