Android ListView Больше нельзя выбрать? - PullRequest
0 голосов
/ 01 сентября 2010

Когда я использую ImageButton в строке ListView, ros недоступен для выбора. Когда я изменяю его на ImageView, его можно выбрать.

У меня есть это простое расположение строк, и ниже мой список, я что-то упустил простой?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_height="fill_parent" 
android:layout_width="fill_parent" 
android:orientation="horizontal"
android:id="@+id/layoutrowtop">

    <ImageButton android:id="@+id/imgDetailDisclosure" 
    android:layout_height="fill_parent" 
    android:layout_width="48dip" 
    android:layout_gravity="center_vertical"
    android:background="#00000000">
    </ImageButton>

    <RelativeLayout 
        android:layout_width="wrap_content"
        android:layout_height="?android:attr/listPreferredItemHeight"
        android:padding="6dip">

                <TextView android:id="@+id/firstLine" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content"
                android:ellipsize="marquee"
                android:textStyle="bold"
                android:textSize="18dp"
                android:singleLine="true"
                android:gravity="top"
                ></TextView>

                <TextView android:id="@+id/secondLine" 
                android:layout_height="fill_parent" 
                android:layout_below="@+id/firstLine" 
                android:layout_width="wrap_content"
                android:ellipsize="marquee"
                android:textStyle="italic"
                android:textSize="14dp"
                android:singleLine="false"
                android:gravity="top"
                android:lines="2"></TextView>
    </RelativeLayout>
</LinearLayout>

<LinearLayout  
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_width="fill_parent">
<EditText  
    android:id="@+id/search_box"
    android:layout_height="wrap_content" 
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:hint="type to filter"
    android:inputType="text"/>

<ImageButton 
    android:id="@+id/search_button"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:src="@drawable/icon_mag_glass"/>

</LinearLayout>

<!-- Set height to 0, and let the weight param expand it -->
<!-- Note the use of the default ID! This lets us use a ListActivity still! -->
<ListView android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="1" />

1 Ответ

1 голос
/ 01 сентября 2010

Вы добавили объект, который является фокусируемым (ImageButton), к вашему ListView, что делает элементы ListView не фокусируемыми.См. Связанный вопрос для более подробной информации и опций: TextView и Button в каждой строке и onListItemClick ()

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...