android studio textview字体颜色
时间: 2023-04-23 17:07:02 浏览: 259
AndroidStudio字体颜色
5星 · 资源好评率100%
要在Android Studio中更改TextView的字体颜色,可以使用以下代码:
1. 在XML布局文件中,添加TextView并设置其属性:
```
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textColor="@color/myColor" />
```
2. 在colors.xml文件中定义颜色值:
```
<resources>
<color name="myColor">#FF000</color>
</resources>
```
3. 在Java代码中,使用以下代码更改TextView的字体颜色:
```
TextView myTextView = findViewById(R.id.myTextView);
myTextView.setTextColor(getResources().getColor(R.color.myColor));
```
这样就可以更改TextView的字体颜色了。
阅读全文