我有一个ExpandableListView,其中每个组有两个子行(一个用于删除组,另一个用于编辑组):
Item 1
Edit
Delete
Item 2
Edit
Delete
Item i
..
我在onChildClick方法中遇到问题,在单击项目(Item1 / Item2 / Itemi),删除或编辑的情况下注册。 child_row.xml文件如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/editDelete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip"/>
</LinearLayout>