在XML中,我们可以通过textColor属性设置文本颜色,比如android:textColor="#FF0000"。但是我如何通过编码来改变它呢?

我试过这样的方法:

holder.text.setTextColor(R.color.Red);

其中holder只是一个类,文本类型为TextView。红色是字符串中设置的RGB值(#FF0000)。

但是它显示的不是红色而是另一种颜色。我们可以在setTextColor()中传递什么样的参数?在文档中,它说的是int,但它是资源引用值还是其他什么?


当前回答

textView.setTextColor(ContextCompat.getColor(getApplicationC‌​ontext(),R.color.col‌​orWhite)); 

在colors.xml文件中,输入如下代码:

<color name="colorWhite">#FFFFFF</color>

其他回答

你可以使用textView.setTextColor(Color. black)来使用Color类的任何内置颜色。

你也可以使用textView.setTextColor(Color.parseColor(hexRGBvalue))来定义自定义颜色。

在文本视图中设置颜色有很多不同的方法。

Add color value in studio res->values->colors.xml as <color name="color_purple">#800080</color> Now set the color in xml or actvity class as text.setTextColor(getResources().getColor(R.color.color_purple) If you want to give color code directly use below Color.parseColor code textView.setTextColor(Color.parseColor("#ffffff")); You can also use RGB text.setTextColor(Color.rgb(200,0,0)); Use can also use direct hexcode for textView. You can also insert plain HEX, like so: text.setTextColor(0xAARRGGBB); You can also use argb with alpha values. text.setTextColor(Color.argb(0,200,0,0)); a for Alpha (Transparent) v. And if you're using the Compat library you can do something like this text.setTextColor(ContextCompat.getColor(context, R.color.color_purple));

我是这样做的: 创建一个名为Colors in res/values文件夹的XML文件。

我的Colors.xml:

    <?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="vermelho_debito">#cc0000</color>
    <color name="azul_credito">#4c4cff</color>
    <color name="preto_bloqueado">#000000</color>
    <color name="verde_claro_fundo_lista">#CFDBC5</color>
    <color name="branco">#ffffff</color>
    <color name="amarelo_corrige">#cccc00</color>
    <color name="verde_confirma">#66b266</color>
</resources>

为了从xml文件中获得这些颜色,我使用了以下代码: valor是TextView, ctx是Context对象。我不是从一个活动使用它,而是从一个BaseAdapter到一个ListView。这就是我使用Context对象的原因。

valor.setTextColor(ctx.getResources().getColor(R.color.azul_credito));

希望能有所帮助。

TextView text = new TextView(context);
text.setTextColor(Color.parseColor("any hex value of a color"));

以上代码在我这边工作。这里text是一个需要设置颜色的TextView。

TextView color= (TextView)findViewById(R.id.color);
text.setTextColor(Color.RED);