I want to highliht newly-added ListView items with a nice effect. I thought that was simple&easy, but I stumpled upon a problem:
I want to play TransitionDrawable animation and once it completes - rewind it. The new item is going to be highlited for a moment, and then it will blend with the rest.
TransitionDrawable has methods for playing animation forward and backward, but none that could be used for synchronization. I expected a possibility to specify a callback for animation completion, something like:
TransitionDrawable transition = (TransitionDrawable) view.getBackground();
transition.startTransition(500, new TransitionCompleteListener(){
public void completed()
{
transition.reverseTransition(500);
}
});
But nothing like that is supported by TransitionDrawable class.
The problem is: How to play TransitionDrawable animation, and when it finishes - immediately play it backwards? I had an idea of using Timer class to delay execution of the backwards part of the animation, but this solution looks a bit too heavy for such a simple thing.
Or maybe I should use something different that TransitionDrawable? I'd like to avoid using Property Animations, since I want to support older devices (and PA are avaialble since Honeycomb).