Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Vijay12051 opened this issue Jun 18, 2015 · 6 comments
Open

Comments

@Vijay12051
Copy link

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

@amng
Copy link

amng commented Jun 30, 2015

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

@TonyHaddad91
Copy link

Hey amng what is "standard_form_list" parameter?

@TonyHaddad91
Copy link

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

@amng
Copy link

amng commented Jan 19, 2016

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

@TonyHaddad91
Copy link

Thanks amng the problem solved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@amng @Vijay12051 @TonyHaddad91 and others