2

The default behavior of the ExpandableListView implementation is to expand a group's children below the group when clicked.

I'm wondering if it is possible to alter this behavior in order to generate the children above the group (when clicked) by modifying an ExpandableListView XML attribute or programmatically somehow.

Bean
  • 31
  • 2

1 Answers1

0

I ended up accomplishing this feature set by making a normal ListView and adding a some onClickListeners to show/hide a LinearLayout contained within a RelativeLayout.

Bean
  • 31
  • 2