2016-07-29 46 views
0

是否可以通過在其ChildItem內按下按鈕來摺疊ExpandableListViewExpandableListAdapterGroupItemCollapsing ExpandableListView GroupItem按鈕在ChildItem內單擊

我想實現的是:

我正在由一個ExpandableListAdapter(延伸BaseExpandableListAdapter

美聯儲內部的ExpandableListAdaptergetChildView()方法的ExpandableListView,我打電話按鈕(插入子項目佈局xml中),一旦用戶完成閱讀,我想使用它關閉該特定的GroupItem

回答

0

是的。在調用listView.collapseGroup(groupNumber)的按鈕上設置onClickListener

+0

感謝Gabe。這是我想要實現的,但我無法在ExpandableListAdapter的getChildView()方法中獲得ExpandableListView實例。你能否詳細說明一下。 –

+0

將它傳遞給構造函數中的適配器,將其保存在一個成員變量中,然後您可以在任何地方使用它 –

+0

謝謝.... –