How can I remove button of ExpandableListView?

android, button, expand, expandablelistview

Solution

In XML

android:groupIndicator="@null"

or in code

expListView.setGroupIndicator(null)

Problem

I've used a custom `ExpandableListAdapter` in my project. How can I remove this button?

Original source