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

来源:互联网 发布:火锅店收银软件 编辑:程序博客网 时间:2024/05/11 00:36

代码

list.xml

[java] view plaincopy
  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
[java] view plaincopy
  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用来做颜色变换
[java] view plaincopy
  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中
[java] view plaincopy
  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 0
原创粉丝点击