How to disable or remove up/down arrow on parent list item icon.
I want to remove up/down arrow on the parent list item icon. these arrows look very light gray color on top of icon how can I remove this. Please help out ASAP.
Thanks!!!!
Had the same problem. Solved by adding:
final Drawable groupIndicator = (Drawable)
ReflectionUtils.getFieldValue(ExpandableListView.class, "mGroupIndicator", standard_form_list);
groupIndicator.setAlpha(0);
to the getGroupView() method
Hey amng what is "standard_form_list" parameter?
i have solved it with this android:groupIndicator="@null" to the list view
standard_form_list is the ExpandableListView that you are using. Didn't know of that solution.
Thanks amng the problem solved.
Is this the standard solution for this particular problem?