Kaidul
Kaidul

Reputation: 15915

Collapsible List Item in navigation Drawer

I have read the documentation of android Navigation Drawer but there is nothing on how to create collapsible/expandable List item in navigation drawer. I know something about android ExpandableListView but I think it is not the way to create it. I want to create such nested item:

enter image description here

Upvotes: 19

Views: 10451

Answers (1)

Karakuri
Karakuri

Reputation: 38605

You can start with ExpandableListView and writing your own ExpandableListAdapter and use that as your drawer item.

Upvotes: 9

Related Questions