FloatingGroupExpandableListView icon indicating copy to clipboard operation
FloatingGroupExpandableListView copied to clipboard

How to disable or remove up/down arrow on parent list item icon.

Open Vijay12051 opened this issue 10 years ago • 6 comments

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!!!!

Vijay12051 avatar Jun 18 '15 04:06 Vijay12051

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

amng avatar Jun 30 '15 18:06 amng

Hey amng what is "standard_form_list" parameter?

TonyHaddad91 avatar Jan 19 '16 15:01 TonyHaddad91

i have solved it with this android:groupIndicator="@null" to the list view

TonyHaddad91 avatar Jan 19 '16 15:01 TonyHaddad91

standard_form_list is the ExpandableListView that you are using. Didn't know of that solution.

amng avatar Jan 19 '16 16:01 amng

Thanks amng the problem solved.

TonyHaddad91 avatar Jan 21 '16 18:01 TonyHaddad91

Is this the standard solution for this particular problem?

osamascience96 avatar Mar 29 '20 16:03 osamascience96