Android中TextView中background实现点击改变样式
时间: 2023-06-18 12:05:44 浏览: 88
Android 点击TextView 改变背景色
你可以使用 `StateListDrawable` 来实现在 TextView 点击时改变背景的样式。下面是一个示例:
1. 首先,在 `res/drawable` 目录下创建一个名为 `background_selector.xml` 的文件,用于定义 `StateListDrawable`:
```xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/pressed_background" />
<item android:drawable="@drawable/normal_background" />
</selector>
```
上面的代码定义了两个状态:`state_pressed` 表示按下时的状态,`drawable` 表示对应的背景。当 TextView 被按下时,会显示 `pressed_background` 背景;否则,显示 `normal_background` 背景。
2. 接着,在 `res/drawable` 目录下创建 `pressed_background.xml` 和 `normal_background.xml` 两个文件,分别表示按下和普通状态下的背景。这里以红色和蓝色为例:
`pressed_background.xml`:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FF0000" />
</shape>
```
`normal_background.xml`:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#0000FF" />
</shape>
```
3. 最后,在布局文件中,将 TextView 的 background 属性设置为 `background_selector` 即可:
```xml
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:background="@drawable/background_selector" />
```
这样,当用户点击 TextView 时,背景颜色会从蓝色变为红色,松开时又会变回蓝色。
阅读全文