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" />
-