その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をクリックするとプロファイルの説明が表示されることです。ボタンをタップすると、プロファイル編集アクティビティが表示されます。