AFAIK, MergeAdapter only supports the ListAdapter interface. Besides deploying the repo and adding ExpandableListAdapter support, there really is only one other way, I think you could βhackβ a quick solution.
Android uses the ExpandableListConnector to map the ExpandableListAdapter to the BaseAdapter . You can literally copy this class into your project and create it using the ExpandableListAdapter . This will give you a ListAdapter compatible adapter that you can use with the MergeAdapter .
Notice, I never tried this ... but theoretically it should work.
ExpandableListConnector source code
source share