RelativeLayout
当按钮保持按下状态时,我必须android:clickable="true"
将图像颜色从灰色更改为白色(否则如果android:clickable="false"
它不起作用):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/contacts"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_weight="0.2"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:clickable="true" <!-- here clickable = true -->
android:contentDescription="@string/content_description_contacts"
android:scaleType="fitXY"
android:src="@drawable/contacts" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignBottom="@id/image"
android:paddingBottom="10dp"
android:textColor="@drawable/text_color"
android:text="@string/button_contacts"
android:textSize="12sp" />
</RelativeLayout>
看起来像:
我的contacts
选择器似乎:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/contacts_over" />
<item android:state_selected="true"
android:drawable="@drawable/contacts_selected" />
<item
android:drawable="@drawable/contacts_default" />
</selector>
如您所见,我有 3 张图像:默认情况下,选中并按下。
根据文档,设置android:clickable="true"
为后ImageView
我停止获取onClickListener
事件。
contacts = (RelativeLayout) findViewById(R.id.contacts);
contacts.setOnClickListener(this);
所以我有
- 或设置
clickable="false"
并且“state_pressed”不起作用 - 或设置
clickable="true"
但onClickListener
不起作用(未收到事件)
我该怎么办,有什么解决方法吗?
谢谢,