为什么当我触摸 ImageView 时,应用于 ImageView 的状态列表可绘制对象不使用按下状态的可绘制对象?
Why doesn't my state-list-drawable applied to an ImageView use the drawable for pressed-state when I touch the ImageView?
我的 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>
问题是当我 click/touch ImageView
时,button_pressed_state_drawable
似乎没有被使用,即我看不到 <solid android:color="#1aafd0" />
的作用(这基本上是两个可绘制对象之间的唯一区别),即背景颜色仍然是透明的,而不是变为蓝色。我哪里搞砸了?
<item android:drawable="@drawable/button_pressed_state_drawable"
android:state_pressed="true" />
<item android:drawable="@drawable/button_enabled_state_drawable"
android:state_enabled="true" />
一个按钮可以是 "pressed" 和 "enabled." 尝试从第二项中删除 android:state_enabled="true"。
我认为你的 ImageView
不是 clickable
。
尝试使用ImageView.setClicked(true)
使其可点击。
或
android:clickable="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:padding="20dp"
android:src="@drawable/ic_launcher"/>
我的 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>
问题是当我 click/touch ImageView
时,button_pressed_state_drawable
似乎没有被使用,即我看不到 <solid android:color="#1aafd0" />
的作用(这基本上是两个可绘制对象之间的唯一区别),即背景颜色仍然是透明的,而不是变为蓝色。我哪里搞砸了?
<item android:drawable="@drawable/button_pressed_state_drawable"
android:state_pressed="true" />
<item android:drawable="@drawable/button_enabled_state_drawable"
android:state_enabled="true" />
一个按钮可以是 "pressed" 和 "enabled." 尝试从第二项中删除 android:state_enabled="true"。
我认为你的 ImageView
不是 clickable
。
尝试使用ImageView.setClicked(true)
使其可点击。
或
android:clickable="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:padding="20dp"
android:src="@drawable/ic_launcher"/>