android TextView的字体颜色设置的多种步骤
android TextView的字体颜色设置的多种方法
TextView 的字体设置:
1 、直接通过配置文件设置
2 、在Activity 类中进行设置
1 、main.xml 的TextView 标签中:
android:textColor="@color/red"
2 、color.xml 中:
<color name="red">#FF0000</color>