我遇到了麻烦ListView
。它的项目(行)有一个ImageButton
. 已设置,因此此ImageButton
事件有效,但单击行不起作用。android:onClick
onClick
如果我ImageButton
从行项目中删除,请单击行工作(ListView
具有正确的onClick
侦听器)。我该如何解决?我需要onClick
用户单击ImageButton
时的事件,以及用户选择行时的标准单击事件(不是单击ImageButton
而是单击行)。
我的列表视图:
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/restaurants_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@color/list_devider"
android:dividerHeight="1dp"
android:cacheColorHint="@color/list_background" />