ListView 点击Item的时候,改变文字颜色和背景色

代码

list.xml

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical"   
  6.     >  
  7.   
  8.     <ListView  
  9.         android:id="@+id/list"  
  10.         android:layout_width="fill_parent"  
  11.         android:layout_height="wrap_content"  
  12.         />  
  13.   
  14. </LinearLayout>  

list_item.xml
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical"   
  6.     android:background="@drawable/item_type" <!-- item背景色变换 -->  
  7.     >  
  8.   
  9.     <TextView  
  10.         android:id="@+id/txt"  
  11.         android:layout_width="fill_parent"  
  12.         android:layout_height="wrap_content"  
  13.         android:text="@string/hello"   
  14.         android:layout_margin="5dp"  
  15.         android:textColor="@drawable/item_selector" <!-- item文字颜色变换 -->  
  16.         />  
  17.   
  18. </LinearLayout>  

再写一个selector用来做颜色变换
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">  
  3.     <item android:state_focused="true" android:color="@color/text_type02" /> <!-- focused -->  
  4.     <item android:state_pressed="true" android:color="@color/text_type02" /> <!-- pressed -->  
  5.     <item android:state_selected="true" android:color="@color/text_type02" /> <!-- pressed -->  
  6.     <item android:color="@color/text_type01" /> <!-- default -->  
  7. </selector>  

然后到activity中
  1. list = (ListView) findViewById(R.id.list);  
  2.         data = new ArrayList<HashMap<String, Object>>();  
  3.         for(int i=0; i<5; i++) {  
  4.             map = new HashMap<String, Object>();  
  5.             map.put("data""Test" + i);  
  6.             data.add(map);  
  7.         }  
  8.           
  9.         SimpleAdapter simple = new SimpleAdapter(this, data, R.layout.list_item, new String[]{"data"},new int[]{R.id.txt});  
  10.         list.setAdapter(simple);  

TextView 还要增加个属性

android:duplicateParentState="true"

这样才会跟随ParentView的状态来变化

这样就可以实现效果了。

不使用系统的,尽量自定义

使用系统的试过几个不知道哪里不对,一直没生效,这样写就可以了。
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值