当我向状态列表drawable中的<item>添加多个状态时,它将停止工作。为什么?

时间:2016-04-22 05:32:22

标签: android android-drawable xml-drawable statelistdrawable statelist

我想要的是什么:

具有透明背景的ImageView。单击它时,其背景应变为蓝色,并且应保持蓝色,直到单击其他内容为止。我正在使用state-list drawable。

发生了什么:

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

我该如何解决这个问题?

XML中定义的

ImageView如下:

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

2 个答案:

答案 0 :(得分:1)

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

<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);
          }
    }
});

答案 1 :(得分:1)

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

在你的button_state_list_drawable.xml中,在之前将其添加到你的默认状态项:

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

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

然后在ImageView的点击监听器的开头,写下

yourImageView.setSelected(true);

这解决了我的问题。希望它可以帮到你。