我正在开发一个具有 listview 的应用程序,这是一个自定义列表视图,里面有一个按钮和 textview,这个 listview 包含 textview 和一个按钮。我在按钮上使用了 Onclick 侦听器,所以我无法在 Listview 上使用 onItemClick 侦听器,我应该怎么做才能实现那个。
这是代码
<ListView
android:id="@+id/lvMenuItem"
android:layout_width="350dp"
android:dividerHeight="3dp"
android:layout_height="wrap_content" >
</ListView>
LvItem.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="65dp"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imgMenu"
android:layout_width="60dp"
android:layout_height="60dp"
android:clickable="false"
android:contentDescription="@string/app_name"/>
<LinearLayout
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:orientation="vertical">
<TextView
android:id="@+id/tvSubMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="" />
<TextView
android:id="@+id/tvType"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="" />
<TextView
android:id="@+id/tvPrice"
android:layout_width="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_height="wrap_content"
android:text="" />
</LinearLayout>
<Button
android:id="@+id/btnOrder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/btnOrder" />
</LinearLayout>
按钮上的 OnclickListner 工作正常我应该为 Listview 上的 onItemCLickListner 做什么。请指导我