Drawable(3)Color State List Resource
注意 Color State List Resource 与 Color不同,前者是颜色状态表.根据不同状态显示不同颜色,它是State list,里面有多种颜色,后者只是一个颜色.
Color State List Resource
A ColorStateList
is an object you can define in XML that you can apply as a color, but will actually change colors, depending on the state of the View
object to which it is applied. For example, a Button
widget can exist in one of several different states (pressed, focused, or niether) and, using a color state list, you can provide a different color during each state.
You can describe the state list in an XML file. Each color is defined in an <item>
element inside a single<selector>
element. Each <item>
uses various attributes to describe the state in which it should be used.
During each state change, the state list is traversed top to bottom and the first item that matches the current state will be used—the selection is not based on the "best match," but simply the first item that meets the minimum criteria of the state.
Note: If you want to provide a static color resource, use a simple Color value.
- FILE LOCATION:
-
res/color/filename.xml
- COMPILED RESOURCE DATATYPE:
- Resource pointer to a
ColorStateList
. - RESOURCE REFERENCE:
- In Java:
R.color.filename
@[package:]color/filename
- SYNTAX:
-
1 <?xml version="1.0" encoding="utf-8"?> 2 <selector xmlns:android="http://schemas.android.com/apk/res/android" > 3 <item 4 android:color="hex_color" 5 android:state_pressed=["true" | "false"] 6 android:state_focused=["true" | "false"] 7 android:state_selected=["true" | "false"] 8 android:state_checkable=["true" | "false"] 9 android:state_checked=["true" | "false"] 10 android:state_enabled=["true" | "false"] 11 android:state_window_focused=["true" | "false"] /> 12 </selector>
- ELEMENTS:
attributes:
xmlns:android
"http://schemas.android.com/apk/res/android"
.<item>
<selector>
element.- attributes:
android:color
- EXAMPLE:
- XML file saved at
res/color/button_text.xml
:1 <?xml version="1.0" encoding="utf-8"?> 2 <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 <item android:state_pressed="true" 4 android:color="#ffff0000"/> <!-- pressed --> 5 <item android:state_focused="true" 6 android:color="#ff0000ff"/> <!-- focused --> 7 <item android:color="#ff000000"/> <!-- default --> 8 </selector>
This layout XML will apply the color list to a View:
1 <Button 2 android:layout_width="fill_parent" 3 android:layout_height="wrap_content" 4 android:text="@string/button_text" 5 android:textColor="@color/button_text" />
-
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 【杂谈】分布式事务——高大上的无用知识?