How to change the ExpandableListview icon on the left to others (android ExpandableListView)

Now I want to use the ExpandableListView to display my data, and I want to change the icon of the left element or let it disappear. can someone give me an offer.

THX

+3
source share
3 answers

setGroupIndicator(null) must leave.

+4
source

In this video you can determine exactly how you can change the icons (in the expandable list).

39 Tutorial for Android Working with ExpandableListView 6

+1
source

.xml.

<ExpandableListView 
   ... 
   ...
    android:groupIndicator="@null" />

 getExpandableListView().setGroupIndicator(null);
0

Source: https://habr.com/ru/post/1757951/


All Articles