当前位置: 代码迷 >> Android >> android TextView的字体颜色设置的多种步骤
  详细解决方案

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

热度:5   发布时间:2016-05-01 16:59:23.0
android TextView的字体颜色设置的多种方法

TextView的字体设置:

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

2、在Activity类中进行设置

?

1main.xmlTextView标签中:

android:textColor="@color/red"

2color.xml中:

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

  相关解决方案