Android选择器Select

Posted 西红柿里没有番茄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android选择器Select相关的知识,希望对你有一定的参考价值。

选择器(select)

当我们对一个控件,要对不同的事件,触发不同的背景.例如:我们需要对一个按钮,进行正常的状态下是一个图片,点击下去之后,又变化成另外一种图片.

步骤: 
1: 要在res文件夹下面的一个drawable文件,然后建立一个xml文件.在里面定义你需要记住的状态,并且引用相应的图片 
2.在控件里面使用,一般使用android:background=”@drawable/dd” (这里dd是我们自定义xml文件的文件名)
这样的方式

例如dd文件内容如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!--控件未点击时的背景颜色-->
    <item android:state_pressed="false" android:drawable="@color/colorAccent"></item>
    <!--控件点击时的背景颜色-->
    <item android:state_pressed="true" android:drawable="@color/colorPrimaryDark"></item>


</selector>

 

控件引用方式:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="200px"
        android:background="@drawable/dd"
        android:clickable="true" />//一定要给定控件一个初始状态
</LinearLayout>

 




以上是关于Android选择器Select的主要内容,如果未能解决你的问题,请参考以下文章

Android 日期选择器片段更改为微调器

片段中的Android选择器意图到图片照片

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段6——CSS选择器

如何使用Android片段管理器传递变量[重复]

Android选择器Select