android studio textview设置背景色
时间: 2023-08-07 20:10:44 浏览: 792
Android 点击TextView 改变背景色
要在 Android Studio 中设置 TextView 的背景色,可以使用以下方式:
1. 在 XML 布局文件中设置:
```xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FF0000" />
```
在上述代码中,`android:background="#FF0000"` 设置了 TextView 的背景色为红色。
2. 在 Java 代码中设置:
```java
TextView textView = findViewById(R.id.textView);
textView.setBackgroundColor(Color.RED);
```
在上述代码中,使用 `setBackgroundColor()` 方法将 TextView 的背景色设置为红色。
请注意,这里的红色仅作为示例,您可以根据需要更改颜色值。
阅读全文