android设置表格中的字体颜色
时间: 2023-12-17 12:03:53 浏览: 200
在 Android 中,可以通过使用 `TextView` 来设置字体颜色。如果要在表格中设置字体颜色,可以在表格中的每个单元格中使用 `TextView`,然后设置相应的颜色属性。
例如,以下代码段演示了如何在表格中设置一些文本视图,并将它们的字体颜色设置为红色:
```xml
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow>
<TextView
android:text="Name"
android:textColor="#FF0000" />
<TextView
android:text="Age"
android:textColor="#FF0000" />
</TableRow>
<TableRow>
<TextView
android:text="John"
android:textColor="#FF0000" />
<TextView
android:text="32"
android:textColor="#FF0000" />
</TableRow>
<TableRow>
<TextView
android:text="Jane"
android:textColor="#FF0000" />
<TextView
android:text="25"
android:textColor="#FF0000" />
</TableRow>
</TableLayout>
```
在这个例子中,`TextView` 的 `textColor` 属性被设置为红色(`#FF0000`)。你可以根据需要设置不同的颜色值。
阅读全文