我有一个Relativelayout
可点击的。我里面有一个元素(一个ImageButton
),我也希望它是可点击的。
ImageButton
在我添加;之前,布局是可点击的。现在只有那个是可点击的。
我已经在这两个元素中尝试了focusable
and focusableInTouchMode
= true
and的所有组合false
(我只在xml
布局中尝试过)。我怎样才能让它们都可点击?
我的代码;注意这是在 a 里面ListView
,每一行都有这个;LinearLayout
周围有一个不可点击的:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/row_selector"
android:duplicateParentState="true"
android:paddingBottom="10dp" >
// several TextViews edited out
<ImageButton
android:id="@+id/ibMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:background="@color/row_overflow_state"
android:contentDescription="menu"
android:src="@drawable/ic_action_overflow" />
</RelativeLayout>