How to keep the ExpandableListView Opened?

后端 未结 3 1810
别跟我提以往
别跟我提以往 2021-02-07 08:56

I am working on the ExpandableListView I have completed the work, now only one thing that I want to do is I don\'t want the ListView to be DropDown on click of the Expandable Li

3条回答
  •  别那么骄傲
    2021-02-07 09:20

    Open ExpandableListView Group:

     listView.expandGroup(itemPosition);
    

    Collapse ExpandableListView Group:

     listView.collapseGroup(itemPosition);
    

提交回复
热议问题