Diging into Property Animation, introduced in Android Honeycomb, I found an example of an Animator Set. In Dev Guide, it is written that “The set element (AnimatorSet) exposes a single attribute, ordering. Set this attribute to together (default) to play all the animations in this set at once. Set this attribute to sequentially to play the animations in the order they are declared”. So, I tryed this attribute
<set android:ordering="sequentially"></set>, but I got an error, saying "error: Error parsing XML: unbound prefix“. Why is it so? Does the <set> part must be inside sth else?
Diging into Property Animation, introduced in Android Honeycomb, I found an example of an
Share
android:ordering does not seem to be in the API anymore.
Use the android:startOffset element to time your animations correctly, otherwise they will happen simultaneously.