当ImageView具有标记clickable = true时,没有收到onClickListener的事件

时间:2013-04-23 10:31:50

标签: android relativelayout android-imageview

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

enter image description here

似乎:

enter image description here

我的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不起作用(未收到任何活动)

我该怎么办,任何解决方法?

谢谢,

3 个答案:

答案 0 :(得分:2)

尝试将onClickListener设置为ImageView而不是RelativeLayout

这也可能让你感兴趣:

How to pass the onClick event to its parent on Android?

答案 1 :(得分:1)

如果您将Listner设置为Imageview而不是Layout,那么效果会很好。

答案 2 :(得分:0)

尝试使用ImageButton小部件而不是ImageView。