Android中动态设置文字颜色
时间: 2023-09-16 22:12:07 浏览: 116
在Android中,可以通过调用TextView的setTextColor()方法来动态设置文字颜色。例如,以下代码将TextView的文字颜色设置为红色:
```java
TextView textView = findViewById(R.id.text_view);
textView.setTextColor(Color.RED);
```
你也可以使用颜色资源来设置文字颜色。例如,以下代码将TextView的文字颜色设置为R.color.blue:
```java
TextView textView = findViewById(R.id.text_view);
textView.setTextColor(getResources().getColor(R.color.blue));
```
其中,R.color.blue是一个在颜色资源文件中定义的颜色值。
阅读全文