1

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

问题是我的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>
4

2 回答 2

4

我很确定这是因为您的列表布局 LinearLayout 有一个layout_width. wrap_content这将导致您的行仅与其中包含的视图一样宽。如果您将其设置为,fill_parent否则match_parent它将扩展以填充列表的宽度。

于 2012-09-28T18:53:29.020 回答
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>

于 2012-09-28T18:47:34.043 回答