Android代码中设置字体颜色的方法

TextView txt=(TextView) findViewById(R.id.text_name);

//第1种:
txt.setTextColor(android.graphics.Color.RED); // 系统自带的颜色类

//第2种:
txt.setTextColor(android.graphics.Color.parseColor("#87CEFA")); // 使用Color类转换

//第3种:
txt.setTextColor(0xffff00ff); // 0xffff00ff是int类型的数据,分组一下0x|ff|ff00ff,0x是代表颜色十六进制整数的标记,ff是表示透明度,ff00ff表示颜色。注意:这里ffff00ff必须是8位颜色格式,不接受ff00ff这种6位的颜色格式。

//第4种:
txt.setTextColor(this.getResources().getColor(R.color.red));
// 通过获得资源文件进行设置。根据不同的情况R.color.red也可以是R.string.red或者R.drawable.red,当然前提是需要在相应的配置文件里做相应的配置。如(xml 标签):
// <color name="red">#FF0000</color>
// <drawable name="red">#FF0000</drawable>
// <string name="red">#FF0000</string>

猜你喜欢

转载自blog.csdn.net/chenzhengfeng/article/details/81067186