不是整个列表项可以在ListView中单击

时间:2012-09-28 18:43:31

标签: android android-listview

是的我读过this个问题。不,它没有帮助。

问题是我的ListView单元格中只有突出显示的区域是可点击的。这是一个充满文字的区域。看看图片:

enter image description here

所以当你点击带圆圈的区域时 - 它不会响应。

关于如何使其正常工作的任何想法???

修改:我的列表布局:

<?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>

2 个答案:

答案 0 :(得分:4)

我很确定这是因为您的列表布局LinearLayout的layout_widthwrap_content。这将导致您的行只能与其中包含的视图一样宽。如果您将其设置为fill_parentmatch_parent,则会扩展以填充列表的宽度。

答案 1 :(得分:2)

尝试更改为

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">

<ImageView
    android:id="@+id/shoulderLogo"
    android:layout_width="wrap_content"
    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>