Android BaseExpandableListAdapter - getView方法如何工作

时间:2012-01-20 08:19:35

标签: android expandablelistview

我有一个ExpandableList,它可以访问适配器BaseExpandableListAdapter。

  

我希望在点击子视图时更改子视图

通过以下方式添加ExpandableListView中的子项:

    @Override
public View getChildView(int groupPosition, int childPosition,
        boolean isLastChild, final View convertView, ViewGroup parent) {}

当点击其中一个孩子时,如何更改孩子?

1 个答案:

答案 0 :(得分:0)

使用OnChildClickListener。

不要直接更改子视图,只需修改与子视图关联的数据,然后通过notifyDatasetChanged()

之类的内容刷新列表视图