ANDROID – ExpandableListView

I assume, you have your data structured somehow, like: ArrayList where Parent {name:String, checked:boolean, children:ArrayList} and Child {name:String} If so, you only have to do two things: create proper layouts for your parent item renderer and child item renderer expand BaseExpandableListAdapter to build up the list yourself. Here is a small sample about what’s in … Read more