是的,我读过这个问题。不,它没有帮助。
问题是我的ListView
单元格中只有突出显示的区域是可点击的。它是填充文本的区域。看一下图片:
因此,当您单击圆圈区域时 - 它不会响应。
关于如何使其正常工作的任何想法???
编辑:我的列表布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp">
<ImageView
android:id="@+id/shoulderLogo"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp">
</ImageView>
<TextView
android:id="@+id/shoulderLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TextView>
</LinearLayout>