Going into the property animation introduced in Android Honeycomb, I found an example of the Animator Set. The Dev Guide says that “The set element (AnimatorSet) provides one attribute ordering. Set this attribute together (default) to play all the animations in this set at the same time. Set this attribute to play animations in sequence in the order in which they are announced. " So, I tried this attribute
<set android:ordering="sequentially"></set>, but I got the error message "error: Error parsing XML: unbound prefix. "Why is this so? Part <set>should be inside else?
lomza source
share