对于具有如下自定义行布局的 ListView:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="51dp"
android:layout_height="43dp"
android:id="@+id/btnBin"
android:focusable="false"
android:focusableInTouchMode="false"
android:background="@drawable/ktape" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Temporary"
android:id="@+id/txtShowUsername"
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:paddingTop="20dp"
android:gravity="right"
android:paddingRight="10dp" />
</LinearLayout>
该按钮不应该是可聚焦的,以让 ListView 的 OnItemClickListener 执行:
android:focusable="false"
android:focusableInTouchMode="false"
为什么我需要将focusable设置为false?为什么可聚焦按钮阻止OnItemClickListener.OnItemClick()
执行?