当我将多个状态添加到状态列表可绘制对象中的 <item> 时,它停止工作。为什么?

When I add more than one states to an <item> in a state-list drawable, it stops working. Why?

我想要的:

具有透明背景的 ImageView。当它被点击时,它的背景应该变成蓝色,并且应该保持蓝色直到点击其他东西。我正在为它使用 state-list drawable。

发生了什么:

给出代码如下。 问题是背景确实变蓝了,但它不会保持蓝色。所以我认为这是因为android:state_pressed只是代表了widget 的时刻]被点击。所以我也在 android:state_pressed="true" 之后添加了 android:state_selected="true"button_state_list_drawable.xml然后发生的事情是背景停止变蓝,即使图像视图被点击。

我该如何解决这个问题?

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"
        android:clickable="true" />

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"
        android:state_selected="true" />

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

</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>

我不知道这是否是解决方案,但我必须展示一些代码。您还没有为您的选择器添加默认状态,我看不到您选择的状态(您在问题中写了它,但您没有发布它)。一定是这样的:

<selector xmlns:android="http://schemas.android.com/apk/res/android" >


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

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

    <item android:drawable="@drawable/your_selected_state_drawable"
        android:state_selected="true" />

    <item android:drawable="@drawable/your_button_default_drawable"/>

</selector>

而且我认为您必须以编程方式添加所选状态(我不确定是否会自动添加)

yourImageView.setOnClickListener(new OnClickListener(){
      @Override
  public void onClick(View v){

        if(yourImageView.isSelected()){
            yourImageView.setSelected(false);
          }else{
            yourImageView.setSelected(true);
          }
    }
});

我最近遇到了这个问题,这就是我所做的。

在您的 button_state_list_drawable.xml 中,将此添加到 之前的某处 您的默认状态项:

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

同时从您的 state_pressed 项中删除 android:state_selected="true"

然后在 ImageView 的点击侦听器的开头,写入

yourImageView.setSelected(true);

这解决了我的问题。希望对你有帮助。