首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

listView背景设立

2012-06-27 
listView背景设置如果listview使用别的layout过滤,那么要想点击Item变背景颜色的话,需要在layout的父layou

listView背景设置
如果listview使用别的layout过滤,那么要想点击Item变背景颜色的话,需要在layout的父layout里边设置android:background="@drawable/list_bg"
list_bg的xml文件
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 

<!-- 没有焦点时的背景图片 --> 
  <item android:state_window_focused="false"  
        android:drawable="@drawable/list_on" />  

<!-- 非触摸模式下获得焦点并单击时的背景图片 
  <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/list_press" />  
<!--选中时的图片背景  --> 
  <item android:state_selected="true"  
        android:drawable="@drawable/list_press" />  

<!--获得焦点时的图片背景  --> 
  <item android:state_focused="true"  
        android:drawable="@drawable/list_press" />  
</selector>  

热点排行