android TextView的字体颜色设置的多种步骤

android TextView的字体颜色设置的多种方法TextView的字体设置:1、直接通过配置文件设置2、在Activity类中进

android TextView的字体颜色设置的多种方法

TextView的字体设置:

1、直接通过配置文件设置

2、在Activity类中进行设置

?

1、main.xml的TextView标签中:

android:textColor="@color/red"

2、color.xml中:

<color name="red">#FF0000</color>