Artur Gomes

Results 2 comments of Artur Gomes

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

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