Android代码中更改TextView颜色

项目中,需要在代码中动态更改TextView的颜色,原先使用如下:

text.setTextColor(R.color.black);

为生效,查阅资料后,正确写法如下:

text.setTextColor(context.getResources().getColor(R.color.black));

或:

text.setTextColor(getResources().getColorStateList(R.color.black));

Android代码中更改TextView颜色,布布扣,bubuko.com

Android代码中更改TextView颜色

上一篇:iOS工具种之16进制颜色转为UIColor


下一篇:Android学习笔记之AndroidManifest.xml文件解析(转)