Is it possible to apply an expand or collapse animation for expandableListView?

link|improve this question

67% accept rate
I don't think it is possible to make the gap between the rows animate though I put slide left/right animation on the view that I show as the child. This only really works because there is only a single child. – skorulis Mar 4 '11 at 5:59
feedback

3 Answers

up vote 2 down vote accepted

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 View.GONE then gradually re-size the margin from a negative value to the required size while setting visibility to View.VISIBLE.

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 view.bottomMargin = -50 or more, otherwise the animation does not work properly the first time, but so far I did not find any viable alternative.

And finally, this app includes the above example, among lots of other useful examples:

link|improve this answer
Thanks for the ui patterns app link. – howettl May 1 at 21:30
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.