转载请注明出处: http://blog.csdn.net/fth826595345/article/details/9208771 

TextView tText=(TextView) findViewById(R.id.textv_name);
    //第1种:
    tText.setTextColor(android.graphics.Color.RED);//系统自带的颜色类

    // 第2种:
    tText.setTextColor(0xffff00ff);//0xffff00ff是int类型的数据,分组一下0x|ff|ff00ff。0x是代表颜色整数的标记,ff是表示透明度,ff00ff表示颜色,注意:这里ffff00ff必须是8个的颜色表示,不接受ff00ff这样的6个的颜色表示。

//第3种: tText.setTextColor(android.graphics.Color.parseColor("#87CEFA")) ; //还是利用Color类; //第4种: tText.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>*/

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2021-09-08
  • 2021-10-29
  • 2021-11-23
猜你喜欢
  • 2022-12-23
  • 2022-02-06
  • 2021-04-09
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
相关资源
相似解决方案