label.setTextColor(R.color.black);设置不生效
第一种方法
修改app/res/values目录下的themes.xml
parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge"改为parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge">
第一种方法没起作用
第二种方法
//使用ColorStateList 设置颜色生效
ColorStateList colorStateList =ThematicMapListAdapter.super.mContext.getResources().getColorStateList(R.color.co_app_theme); label.setTextColor(colorStateList);
第二种方法起作用了
960

被折叠的 条评论
为什么被折叠?



