Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ExpandableListView - hide indicator for groups with no children

In an ExpandableListView, is there a way to hide the group indicator for groups with no children?

like image 452
Gratzi Avatar asked Nov 10 '10 13:11

Gratzi


1 Answers

Try this >>>

for all items

 getExpandableListView().setGroupIndicator(null); 

In xml

android:groupIndicator="@null" 
like image 105
Amt87 Avatar answered Oct 02 '22 14:10

Amt87