Search code examples
androidbuttonexpandablelistviewexpand

How can I remove button of ExpandableListView?


I've used a custom ExpandableListAdapter in my project. How can I remove this button? enter image description here


Solution

  • In XML

    android:groupIndicator="@null"
    

    or in code

    expListView.setGroupIndicator(null)