码迷,mamicode.com
首页 > 移动开发 > 详细

Android中的Selector的用法

时间:2015-08-28 10:48:49      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

转自:http://blog.csdn.net/shakespeare001/article/details/7788400/

 

1.创建mylist_view.xml文件

2.根据具体需求编辑mylist_view.xml文件

3.引用mylist_view.xml文件

 

<?xml version="1.0" encoding="utf-8" ?>     
<selector xmlns:android="http://schemas.android.com/apk/res/android">   
<!-- 默认时的背景图片-->    
  <item android:drawable="@drawable/pic1" />      
<!-- 没有焦点时的背景图片 -->    
  <item android:state_window_focused="false"     
        android:drawable="@drawable/pic1" />     
<!-- 非触摸模式下获得焦点并单击时的背景图片 -->    
  <item android:state_focused="true" android:state_pressed="true"   android:drawable= "@drawable/pic2" />   
<!-- 触摸模式下单击时的背景图片-->    
<item android:state_focused="false" android:state_pressed="true"   android:drawable="@drawable/pic3" />    
<!--选中时的图片背景-->    
  <item android:state_selected="true"   android:drawable="@drawable/pic4" />     
<!--获得焦点时的图片背景-->    
  <item android:state_focused="true"   android:drawable="@drawable/pic5" />     
</selector>  

  具体如上面链接。

 技术分享

Android中的Selector的用法

标签:

原文地址:http://www.cnblogs.com/Sunnor/p/4765792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!