Order attribute not working?

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?

+3
source share
2 answers

android: the order is no longer displayed in the API.

android: startOffset , .

+6

android. , :

<set android:ordering="sequentially">

AnimatorSet:

<set xmlns:android="http://schemas.android.com/apk/res/android"
        android:ordering="sequentially">
+3

All Articles