I know it is possible to run series of animation at same time with animationset like this :
AnimationSet animationSet = new AnimationSet(true);
animationSet.addAnimation(new RotateAnimation(this,0));
/**
* more animation
*/
animationSet.addAnimation(new RotateAnimation(this,90));
animationSet.start();
I want to achieve something similar with viewanimator (animated series of views at same time) :
ViewPropertyAnimator a = v.animate().rotation(0).setDuration(500);
Is there a way I can achieve this ?