Is it possible to apply an expand or collapse animation for expandableListView?
feedback
|
|
It can be done using a simple ListView that contains an initially hidden view and a custom class that extends Animation.
The basic idea is to start with See: ..and finally The last example contains all the code you need. It looks a bit hackish to me, especially the fact that you must initially set And finally, this app includes the above example, among lots of other useful examples: | ||||
|
feedback
|
|
I have done a similar job for a simple list view.For doing that I overrode the getView method and applied translate up( or down) animation on each list item.The degree of translation was decided by the position of the list item. | |||
|
feedback
|
|
So I ended up doing this in the following way: http://stackoverflow.com/a/9290723/969325 This is just for general views but can be used inside listview as well. | |||
|
feedback
|