其他分享
首页 > 其他分享> > Android ImageView选择器不起作用

Android ImageView选择器不起作用

作者:互联网

这是我的选择器:

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

    <item android:drawable="@drawable/white_small_down_arrow_v4"   android:state_pressed="true"/>  
    <item android:drawable="@drawable/white_small_up_arrow_v4" android:state_focused="false"/> 
    <item android:drawable="@drawable/white_small_up_arrow_v4" /> <!-- default -->

</selector>

这就是我在ImageView上应用它的方式:

     <ImageView
            android:id="@+id/change_city_small_down_ImageView"
            android:clickable="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@+id/changeCityRelativeLayout"
            android:layout_marginLeft="5dp"
            android:background="@drawable/change_city_selector"
   </ImageView>

现在的问题是,当我按下ImageView时,相应的状态可绘制图像不会更改.我试过其他的wigdet,也行不通.我不知道为什么,因为我曾经以相同的方式做这件事,并且它起作用了.

单击它时,我已监视imageview状态.

v.hasFocus():false,v.isClickable():true,v.isInTouchMode():true,v.isEnabled():true,v.isPressed():true

我犯了一个严重的错误,white_small_down_arrow_v4和white_small_up_arrow_v4实际上指向相同的方向,换句话说,它们是同一张图片.

因此,如果他们发现选择器不起作用,我的错误可能会帮助其他人,并且要做的第一件事是检查状态可绘制对象是否相同.

解决方法:

试试这个:使用图片android:src =“ @ drawable / change_city_selector”代替android:background =“ @ drawable / change_city_selector”

<ImageView
        android:id="@+id/change_city_small_down_ImageView"
        android:clickable="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/changeCityRelativeLayout"
        android:layout_marginLeft="5dp"
        android:src="@drawable/change_city_selector"
</ImageView>

标签:android-selector,android-imageview,android
来源: https://codeday.me/bug/20191029/1961933.html