ListFragment作为ActionBar选项卡。 TextView元素不可点击。试过很多不同的解决方案

时间:2013-07-25 09:12:09

标签: android android-layout listview clickable

我的ActionBar中有一个ListFragment,它是一个Tab(多个中的一个)。问题是没有列表元素是可点击的(永远不会调用onListItemClick())。该元素由两个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>

你有什么问题吗?

0 个答案:

没有答案