首先在res目录下新建drawable文件夹,再在新建的drawable文件夹中新建mylist_view.xml,其目录结构为:res/drawable/mylist_view.xml。
1 <?xml version="1.0" encoding="utf-8" ?>
2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
3 <!-- 默认时的背景图片-->
4 <item android:drawable="@drawable/pic1" />
5 <!-- 没有焦点时的背景图片 -->
6 <item android:state_window_focused="false"
7 android:drawable="@drawable/pic1" />
8 <!-- 非触摸模式下获得焦点并单击时的背景图片 -->
9 <item android:state_focused="true" android:state_pressed="true" android:drawable= "@drawable/pic2" />
10 <!-- 触摸模式下单击时的背景图片-->
11 <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/pic3" />
12 <!--选中时的图片背景-->
13 <item android:state_selected="true" android:drawable="@drawable/pic4" />
14 <!--获得焦点时的图片背景-->
15 <item android:state_focused="true" android:drawable="@drawable/pic5" />
16 </selector>