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_widthofがあるためだと確信していますwrap_content。これにより、行は含まれるビューと同じ幅しかありません。代わりにfill_parentormatch_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 に答える