单击ExpandableListView中的按钮时选择项目

时间:2016-03-17 11:03:41

标签: android expandablelistview expandablelistadapter

我是Android新手。对不起,如果这是一个愚蠢的问题。 当用户点击按钮时,我想获取ExpandableListView中包含的项目数据。 enter image description here

Ex:当用户点击Project 1按钮时,我想从Project 1获取数据。

这是我的HeaderView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp">
    <TextView
        android:id="@+id/project_title"
        android:textSize="16sp"
        android:paddingLeft="35dp"
        android:gravity="center_vertical"
        android:background="@color/colorinnotholic"
        android:textColor="@color/white"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="45sp" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="45dp"
    android:background="@color/colorinnotholic">
    <Button
        android:id="@+id/select_project"
        android:background="@drawable/ic_menu_send"
        android:shadowColor="@null"
        android:layout_marginRight="10dp"
        android:backgroundTint="@android:color/white"
        android:layout_gravity="center_vertical"
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:focusable="false"
        android:onClick="selectProject"/>
</LinearLayout>

现在,您可以看到为了执行操作,我在XML文件中包含了onClick方法。

selectProject方法是

public void selectProject(View v) {
    switch (v.getId()){
        case R.id.select_project:
 //                final Project selectedProject = (Project) listAdapter.getChild(0,0);

        default:
            break;
    }

}

在评论中,您可以看到我能够手动获取项目。但是,我无法从用户操作动态获取。我的expandableListView.getSelectedItemPosition返回-1。我认为这可能是因为我直接访问Button的onclick方法。但是,我真的不知道如何以不同的方式访问。我也尝试使用setOnChildClickListener,它提供了groupPosition和childPosition。

有人可以帮忙吗? 如果您认为还有一种更好的方式而不是包含按钮,我会对此持开放态度。如果我应该包含自定义ExpandableListAdapter中的代码,请告诉我。

提前致谢。

1 个答案:

答案 0 :(得分:0)

谢谢大家, 我终于找到了我要找的东西。我创建了一个界面,正如here中的@Rami所解释的那样。希望它对其他人有所帮助。