0

ActionBar にタブ (多くの 1 つ) である ListFragment があります。問題は、リスト要素のどれもクリックできないことです (onListItemClick() は呼び出されません)。この要素は 2 つの TextView で構成されています。私は次のようなさまざまなことを試しました:

android:drawSelectorOnTop="false"
android:textIsSelectable="true" 
android:focusable="false"
android:focusableInTouchMode="false" 
android:clickable="false"

ListFragment レイアウト:

<ListView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>

行アイテムのレイアウト:

<?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="80dp"
android:gravity="center_vertical"
android:orientation="vertical"
android:weightSum="2" >

<TextView
    android:id="@+id/tv_emergency_number_name"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_marginLeft="10dp"
    android:layout_weight="1"
    android:gravity="center_vertical"
    android:textSize="17sp"
    android:textStyle="bold" />

<TextView
    android:id="@+id/tv_emergency_number"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_marginLeft="5dp"
    android:layout_weight="1"
    android:gravity="center_vertical|left"
    android:textSize="15sp" />

</LinearLayout>

何が問題なのか手がかりはありますか?

4

0 に答える 0