zoukankan      html  css  js  c++  java
  • 【android】listview改变选中行字体颜色

    目标:选中item,其字体设置为#3197FF,未选中的,其字体为#FFFFFF。其效果图如下:

    bg

    与listvew设置选中行item背景图片一样,使用selector,不过这里的颜色设置,应该是在listview中的textview中设置。

    <?xml version="1.0" encoding="utf-8"?>  
    <TableLayout
    	xmlns:android="http://schemas.android.com/apk/res/android"    
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	> 
             <TableRow >
             <TextView
                android:id="@+id/name_tv"  
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textSize="25px"
                android:textColor="@drawable/itemcolor">  
             </TextView> 
             </TableRow> 
    </TableLayout>

    同样,定义itemcolor.xml文件,修改选中行的字体颜色:

    <?xml version="1.0" encoding="utf-8" ?> 
    <selector xmlns:android="http://schemas.android.com/apk/res/android">  
    <!-- 没有焦点时字体颜色 --> 
    <item
    	android:state_selected="false"
    	android:color="#FFFFFF"/>
    <!--选中时的字体颜色  -->  
    <item
    	android:state_selected="true"
    	android:color="#3197FF"/>
    <!-- 非触摸模式下获得焦点并单击时的字体颜色 -->  
    <item
    	android:state_focused="true"
    	android:state_pressed="true"
    	android:color="#3197FF"/>
    </selector>
     

    完成了。

  • 相关阅读:
    L6循环神经网络
    L5语言模型与数据集
    L4文本预处理
    L2 Softmax与分类模型
    L3 多层感知机
    L1线性回归
    P4语法(4)Control block
    机器学习笔记(4)Logistic回归
    [CF] Sasha and One More Name
    机器学习笔记(3)多变量线性回归
  • 原文地址:https://www.cnblogs.com/Amandaliu/p/2080948.html
Copyright © 2011-2022 走看看