I have a ViewGroup on which I have set the android:animateLayoutChanges property to true.
As a result, when I toggle the visibility of one of the Views in the ViewGroup between View.VISIBLE and View.GONE, I get a nice layout change animation as follows:
I'd like to take this idea a step further and chain together a sequence of transitions. For example, hide "Two" and then show "Three".
How do I do this?

