selector的使用,android:clickable="true"

Posted 全栈工程师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selector的使用,android:clickable="true"相关的知识,希望对你有一定的参考价值。

 

<ImageView
                    android:id="@+id/patrol_buzzer_btn"
                    android:layout_width="80dp"
                    android:layout_height="80dp"
                    android:src="@drawable/selector_buzzer"
                    android:clickable="true"
                    app:layout_constraintBottom_toTopOf="@+id/patrol_btn"
                    app:layout_constraintLeft_toLeftOf="parent"
                    app:layout_constraintRight_toRightOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />

 

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

    <item android:drawable="@drawable/artillery_buzzer_pressed" android:state_pressed="true" />
    <item android:drawable="@drawable/artillery_buzzer" android:state_pressed="false"/>

</selector>

 

artillery_buzzer_pressed

 

artillery_buzzer

 

以上是关于selector的使用,android:clickable="true"的主要内容,如果未能解决你的问题,请参考以下文章

安卓--selector简单使用

Java NIO 的前生今世 之四 NIO Selector 详解

Selector

Java NIO- Selector 使用示例

Android 之 selector

Java NIO Selector 的使用