In an ExpandableListView
is it possible to initially select a child item so that the containing group is expanded and the list is scrolled to this child\'s posi
In an ExpandableListView is it possible to initially select a child item so that the containing group is expanded and the list is scrolled to this child's position:
//select child and open it's group
ExpListView.setSelectedChild(groupPos, childPos, true);
//scroll to selected child
ExpListView.smoothScrollToPosition(ExpListView.getFlatListPosition(ExpListView.getPackedPositionForChild(groupPos, childPos)));