我想要的:
具有透明背景的图像视图。单击它时,其背景应变为蓝色,并且应保持蓝色,直到单击其他内容。我正在为它使用状态列表可绘制对象。
发生了什么事情:
代码给出如下。问题是背景确实变成了蓝色,但它不会保持蓝色。所以我认为这是因为android:state_pressed
只是代表单击小部件的时刻。所以我在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>
我最近遇到了这个问题,这就是我所做的。
在您的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);
这解决了我的问题。希望对您有所帮助。
这是否是解决方案,但我必须显示一些代码。您尚未将默认状态添加到选择器,我看不到您选择的状态(您在问题中写了它,但尚未发布)。它必须是这样的:
<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);
}
}
});