为什么当我触摸 ImageView 时,应用于 ImageView 的状态列表可绘制对象不使用该可绘制对象作为按下状态?

问题描述 投票:0回答:2

我的

ImageView
在 XML 中定义如下:

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/fragment_imageView"
        android:src="@drawable/ic_photo"
        android:background="@drawable/button_state_list_drawable" />

button_state_list_drawable.xml
是:

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

    <item android:drawable="@drawable/button_pressed_state_drawable"
        android:state_pressed="true" />

    <item android:drawable="@drawable/button_enabled_state_drawable"
        android:state_enabled="true" />

</selector>

button_pressed_state_drawable.xml
是:

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

    <size android:width="50dp"
        android:height="50dp" />

    <padding android:left="25dp"
        android:right="25dp"
        android:top="25dp"
        android:bottom="25dp" />

    <stroke android:color="#fff"
        android:width="1dp" />

    <solid android:color="#1aafd0" />

</shape>

button_enabled_state_drawable.xml
是:

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

    <size android:width="50dp"
        android:height="50dp" />

    <padding android:left="25dp"
        android:right="25dp"
        android:top="25dp"
        android:bottom="25dp" />

    <stroke android:color="#fff"
        android:width="1dp" />

    <solid android:color="@android:color/transparent" />

</shape>

问题是,当我单击/触摸

ImageView
时,
button_pressed_state_drawable
似乎没有被使用,即我看不到正在运行的
<solid android:color="#1aafd0" />
(这基本上是两个可绘制对象之间的唯一区别) ,即背景颜色仍然是透明的,而不是变成蓝色。我哪里搞砸了?

android imageview android-drawable xml-drawable statelistdrawable
2个回答
6
投票

我认为你的

ImageView
不是
clickable

尝试使用

ImageView.setClicked(true)
使其可点击。

        android:clickable="true"
        android:focusable="true"

还要确保您的

image resource
没有覆盖您的背景。

这就是我所做的,效果很好。

    <ImageView
        android:id="@+id/fragment_imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/button_state_list_drawable"
        android:clickable="true"
        android:focusable="true"
        android:padding="20dp"
        android:src="@drawable/ic_launcher"/>

0
投票
<item android:drawable="@drawable/button_pressed_state_drawable"
    android:state_pressed="true" />

<item android:drawable="@drawable/button_enabled_state_drawable"
    android:state_enabled="true" />

按钮可以同时被“按下”和“启用”。尝试从第二项中删除 android:state_enabled="true" 。

© www.soinside.com 2019 - 2024. All rights reserved.