标签:android color java 文件 代码 html c htm res
步骤:1.在values文件夹下的strings.xml文件里添加颜色:比如
<color name="ccc">#ccc</color>
tv.setTextColor(R.color.ccc);
正确的写法应该是:
tv.setTextColor(this.getResources().getColor(R.color.ccc));ok!
标签:android color java 文件 代码 html c htm res
原文地址:http://blog.csdn.net/howlaa/article/details/39025301