一: 在 drawable 文件夹下新建xml文件
通过不同的状态自动选择颜色
text_color.xml
xml
<?xml version="1.0" encoding="utf-8"?>
1 2 |
<item android:color="@color/text_blue_color" android:state_pressed="true"/> <item android:color="@color/text_defu_color"/> |
1 2 3 4 5 6 7 8 |
**二: 使用** 给 xml 布局文件中的控件指定属性 android:textColor="@drawable/text_color" 接下来在触发相应的状态后, 颜色会改变 配合Button的background(也是Select资源)使用, 可以实现文字背景同时响应变化 |
0 Comments