tvState.setBackgroundResource(R.drawable.shape_white_angle10);
tvState.getBackground().setColorFilter(Color.parseColor(“#e5e5e5”), PorterDuff.Mode.DARKEN);
ImageView 动态设置
//定义选中的颜色
int checkColor = context.getResources().getColor(R.color.theme_red);
//当选中该项时,显示选中颜色,否则显示未选中颜色
iv.setColorFilter(selectPosition==position? checkColor :Color.TRANSPARENT);
————————————————
版权声明:本文为CSDN博主「baidu_24743861」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/baidu_24743861/article/details/115728192