Android - 当我在其中添加一个按钮然后单击它时,为什么ListView的列表项会失去焦点?

时间:2015-08-01 02:36:44

标签: android listview

我在自定义布局中添加一个名为listItem的按钮,这应该导致按钮无法获得焦点,因为listItem根据教科书覆盖它。但事实是,当列表项失去焦点时,我可以单击按钮?我很困惑。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="horizontal"
    android:weightSum="1">

    <Button
        android:layout_width="69dp"
        android:layout_height="wrap_content"
        android:text="ok"
        android:id="@+id/button" />


    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/itemTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dsa"
            android:paddingLeft="15dp"
            android:paddingTop="3dp"
            android:textSize="20dp"/>

        <TextView
            android:id="@+id/itemText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dsadsadas"
            android:paddingLeft="15dp"
            android:paddingBottom="3dp"
            android:layout_weight="0.20"
            android:textSize="12dp" />

    </LinearLayout>


</LinearLayout>

0 个答案:

没有答案