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

分类: Android 516人阅读 评论(0) 收藏 举报

代码

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>  
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    >

    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    	/>

</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>  
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:background="@drawable/item_type" <!-- item背景色变换 -->
    >

    <TextView
        android:id="@+id/txt"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" 
        android:layout_margin="5dp"
        android:textColor="@drawable/item_selector" <!-- item文字颜色变换 -->
    	/>

</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>  
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:color="@color/text_type02" /> <!-- focused -->
    <item android:state_pressed="true" android:color="@color/text_type02" /> <!-- pressed -->
    <item android:state_selected="true" android:color="@color/text_type02" /> <!-- pressed -->
    <item android:color="@color/text_type01" /> <!-- default -->
</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);  
list = (ListView) findViewById(R.id.list);
        data = new ArrayList<HashMap<String, Object>>();
        for(int i=0; i<5; i++) {
        	map = new HashMap<String, Object>();
        	map.put("data", "Test" + i);
        	data.add(map);
        }
        
        SimpleAdapter simple = new SimpleAdapter(this, data, R.layout.list_item, new String[]{"data"},new int[]{R.id.txt});
        list.setAdapter(simple);
这样就可以实现效果了。

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

使用系统的试过几个不知道哪里不对,一直没生效,这样写就可以了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值