I enabled animation(expand and contract) to default android'd expandable listview using this https://github.com/idunnololz/AnimatedExpandableListView/blob/master/src/com/idunnololz/widgets/AnimatedExpandableListView.java.
However, the one limitation that I am facing is to move the current expanded click to the top.
I tried setSelectionFromTop(groupPosition, 0)
Here is the question:
- How to add animation to bringing it to the top?
- How to bring it to a top to a specific height. Lets say below 10px from the top.
Any pointers would be amazing.
Note: The solution should work from sdk 14 and above.