所以我正在Listview
使用我的自定义适配器。适配器布局如下图所示
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/textViewName"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
然后我设置onItemClickListener
为ListView
,它做得很好。然后当我在布局中添加一个按钮时
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/textViewName"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
ListView
不再可点击。我想要实现的是当我单击 ListView 时将显示配置文件描述。然后当我点击按钮时,它将导致配置文件编辑活动。