FileDocCategorySizeDatePackage
AnimationSet.javaAPI DocAndroid 1.5 API14488Wed May 06 22:41:56 BST 2009android.view.animation

AnimationSet

public class AnimationSet extends Animation
Represents a group of Animations that should be played together. The transformation of each individual animation are composed together into a single transform. If AnimationSet sets any properties that its children also set (for example, duration or fillBefore), the values of AnimationSet override the child values.

Fields Summary
private static final int
PROPERTY_FILL_AFTER_MASK
private static final int
PROPERTY_FILL_BEFORE_MASK
private static final int
PROPERTY_REPEAT_MODE_MASK
private static final int
PROPERTY_START_OFFSET_MASK
private static final int
PROPERTY_SHARE_INTERPOLATOR_MASK
private static final int
PROPERTY_DURATION_MASK
private static final int
PROPERTY_MORPH_MATRIX_MASK
private static final int
PROPERTY_CHANGE_BOUNDS_MASK
private int
mFlags
private ArrayList
mAnimations
private Transformation
mTempTransformation
private long
mLastEnd
private long[]
mStoredOffsets
Constructors Summary
public AnimationSet(android.content.Context context, android.util.AttributeSet attrs)
Constructor used when an AnimationSet is loaded from a resource.

param
context Application context to use
param
attrs Attribute set from which to read values


                                    
         
        super(context, attrs);
        
        TypedArray a =
            context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.AnimationSet);
        
        setFlag(PROPERTY_SHARE_INTERPOLATOR_MASK,
                a.getBoolean(com.android.internal.R.styleable.AnimationSet_shareInterpolator, true));
        init();
        
        a.recycle();
    
public AnimationSet(boolean shareInterpolator)
Constructor to use when building an AnimationSet from code

param
shareInterpolator Pass true if all of the animations in this set should use the interpolator assocciated with this AnimationSet. Pass false if each animation should use its own interpolator.

        setFlag(PROPERTY_SHARE_INTERPOLATOR_MASK, shareInterpolator);
        init();
    
Methods Summary
public voidaddAnimation(Animation a)
Add a child animation to this animation set. The transforms of the child animations are applied in the order that they were added

param
a Animation to add.

        mAnimations.add(a);

        boolean noMatrix = (mFlags & PROPERTY_MORPH_MATRIX_MASK) == 0;
        if (noMatrix && a.willChangeTransformationMatrix()) {
            mFlags |= PROPERTY_MORPH_MATRIX_MASK;
        }

        boolean changeBounds = (mFlags & PROPERTY_CHANGE_BOUNDS_MASK) == 0;
        if (changeBounds && a.willChangeTransformationMatrix()) {
            mFlags |= PROPERTY_CHANGE_BOUNDS_MASK;
        }

        if (mAnimations.size() == 1) {
            mDuration = a.getStartOffset() + a.getDuration();
            mLastEnd = mStartOffset + mDuration;
        } else {
            mLastEnd = Math.max(mLastEnd, a.getStartOffset() + a.getDuration());
            mDuration = mLastEnd - mStartOffset;
        }
    
protected android.view.animation.AnimationSetclone()

        final AnimationSet animation = (AnimationSet) super.clone();
        animation.mTempTransformation = new Transformation();
        animation.mAnimations = new ArrayList<Animation>();

        final int count = mAnimations.size();
        final ArrayList<Animation> animations = mAnimations;

        for (int i = 0; i < count; i++) {
            animation.mAnimations.add(animations.get(i).clone());
        }

        return animation;
    
public longcomputeDurationHint()
The duration hint of an animation set is the maximum of the duration hints of all of its component animations.

see
android.view.animation.Animation#computeDurationHint

        long duration = 0;
        final int count = mAnimations.size();
        final ArrayList<Animation> animations = mAnimations;
        for (int i = count - 1; i >= 0; --i) {
            final long d = animations.get(i).computeDurationHint();
            if (d > duration) duration = d;
        }
        return duration;
    
public java.util.ListgetAnimations()

return
All the child animations in this AnimationSet. Note that this may include other AnimationSets, which are not expanded.

        return mAnimations;
    
public longgetDuration()
The duration of an AnimationSet is defined to be the duration of the longest child animation.

see
android.view.animation.Animation#getDuration()

        final ArrayList<Animation> animations = mAnimations;
        final int count = animations.size();
        long duration = 0;

        boolean durationSet = (mFlags & PROPERTY_DURATION_MASK) == PROPERTY_DURATION_MASK;
        if (durationSet) {
            duration = mDuration;
        } else {
            for (int i = 0; i < count; i++) {
                duration = Math.max(duration, animations.get(i).getDuration());
            }
        }

        return duration;
    
public longgetStartTime()

        long startTime = Long.MAX_VALUE;

        final int count = mAnimations.size();
        final ArrayList<Animation> animations = mAnimations;

        for (int i = 0; i < count; i++) {
            Animation a = animations.get(i);
            startTime = Math.min(startTime, a.getStartTime());
        }

        return startTime;
    
public booleangetTransformation(long currentTime, Transformation t)
The transformation of an animation set is the concatenation of all of its component animations.

see
android.view.animation.Animation#getTransformation

        final int count = mAnimations.size();
        final ArrayList<Animation> animations = mAnimations;
        final Transformation temp = mTempTransformation;

        boolean more = false;
        boolean started = false;
        boolean ended = true;

        t.clear();

        for (int i = count - 1; i >= 0; --i) {
            final Animation a = animations.get(i);

            temp.clear();
            more = a.getTransformation(currentTime, temp) || more;
            t.compose(temp);

            started = started || a.hasStarted();
            ended = a.hasEnded() && ended;
        }

        if (started && !mStarted) {
            if (mListener != null) {
                mListener.onAnimationStart(this);
            }
            mStarted = true;
        }

        if (ended != mEnded) {
            if (mListener != null) {
                mListener.onAnimationEnd(this);
            }
            mEnded = ended;
        }

        return more;
    
private voidinit()

        mStartTime = 0;
        mDuration = 0;
    
public voidinitialize(int width, int height, int parentWidth, int parentHeight)

see
android.view.animation.Animation#initialize(int, int, int, int)

        super.initialize(width, height, parentWidth, parentHeight);

        boolean durationSet = (mFlags & PROPERTY_DURATION_MASK) == PROPERTY_DURATION_MASK;
        boolean fillAfterSet = (mFlags & PROPERTY_FILL_AFTER_MASK) == PROPERTY_FILL_AFTER_MASK;
        boolean fillBeforeSet = (mFlags & PROPERTY_FILL_BEFORE_MASK) == PROPERTY_FILL_BEFORE_MASK;
        boolean repeatModeSet = (mFlags & PROPERTY_REPEAT_MODE_MASK) == PROPERTY_REPEAT_MODE_MASK;
        boolean shareInterpolator = (mFlags & PROPERTY_SHARE_INTERPOLATOR_MASK)
                == PROPERTY_SHARE_INTERPOLATOR_MASK;
        boolean startOffsetSet = (mFlags & PROPERTY_START_OFFSET_MASK)
                == PROPERTY_START_OFFSET_MASK;

        if (shareInterpolator) {
            ensureInterpolator();
        }

        final ArrayList<Animation> children = mAnimations;
        final int count = children.size();

        final long duration = mDuration;
        final boolean fillAfter = mFillAfter;
        final boolean fillBefore = mFillBefore;
        final int repeatMode = mRepeatMode;
        final Interpolator interpolator = mInterpolator;
        final long startOffset = mStartOffset;


        long[] storedOffsets = mStoredOffsets;
        if (startOffsetSet) {
            if (storedOffsets == null || storedOffsets.length != count) {
                storedOffsets = mStoredOffsets = new long[count];
            }
        } else if (storedOffsets != null) {
            storedOffsets = mStoredOffsets = null;
        }

        for (int i = 0; i < count; i++) {
            Animation a = children.get(i);
            if (durationSet) {
                a.setDuration(duration);
            }
            if (fillAfterSet) {
                a.setFillAfter(fillAfter);
            }
            if (fillBeforeSet) {
                a.setFillBefore(fillBefore);
            }
            if (repeatModeSet) {
                a.setRepeatMode(repeatMode);
            }
            if (shareInterpolator) {
                a.setInterpolator(interpolator);
            }
            if (startOffsetSet) {
                long offset = a.getStartOffset();
                a.setStartOffset(offset + startOffset);
                storedOffsets[i] = offset;
            }
            a.initialize(width, height, parentWidth, parentHeight);
        }
    
public voidinitializeInvalidateRegion(int left, int top, int right, int bottom)

hide

        final RectF region = mPreviousRegion;
        region.set(left, top, right, bottom);
        region.inset(-1.0f, -1.0f);

        if (mFillBefore) {
            final int count = mAnimations.size();
            final ArrayList<Animation> animations = mAnimations;
            final Transformation temp = mTempTransformation;

            final Transformation previousTransformation = mPreviousTransformation;

            for (int i = count - 1; i >= 0; --i) {
                final Animation a = animations.get(i);

                temp.clear();
                a.applyTransformation(0.0f, temp);
                previousTransformation.compose(temp);
            }
        }
    
public voidreset()

        super.reset();
        restoreChildrenStartOffset();
    
voidrestoreChildrenStartOffset()

hide

        final long[] offsets = mStoredOffsets;
        if (offsets == null) return;

        final ArrayList<Animation> children = mAnimations;
        final int count = children.size();

        for (int i = 0; i < count; i++) {
            children.get(i).setStartOffset(offsets[i]);
        }
    
public voidrestrictDuration(long durationMillis)

        super.restrictDuration(durationMillis);

        final ArrayList<Animation> animations = mAnimations;
        int count = animations.size();

        for (int i = 0; i < count; i++) {
            animations.get(i).restrictDuration(durationMillis);
        }
    
public voidscaleCurrentDuration(float scale)

see
android.view.animation.Animation#scaleCurrentDuration(float)

        final ArrayList<Animation> animations = mAnimations;
        int count = animations.size();
        for (int i = 0; i < count; i++) {
            animations.get(i).scaleCurrentDuration(scale);
        }
    
public voidsetDuration(long durationMillis)

Sets the duration of every child animation.

param
durationMillis the duration of the animation, in milliseconds, for every child in this set

        mFlags |= PROPERTY_DURATION_MASK;
        super.setDuration(durationMillis);
    
public voidsetFillAfter(boolean fillAfter)

        mFlags |= PROPERTY_FILL_AFTER_MASK;
        super.setFillAfter(fillAfter);
    
public voidsetFillBefore(boolean fillBefore)

        mFlags |= PROPERTY_FILL_BEFORE_MASK;
        super.setFillBefore(fillBefore);
    
private voidsetFlag(int mask, boolean value)

        if (value) {
            mFlags |= mask;
        } else {
            mFlags &= ~mask;
        }
    
public voidsetRepeatMode(int repeatMode)

        mFlags |= PROPERTY_REPEAT_MODE_MASK;
        super.setRepeatMode(repeatMode);
    
public voidsetStartOffset(long startOffset)

        mFlags |= PROPERTY_START_OFFSET_MASK;
        super.setStartOffset(startOffset);
    
public voidsetStartTime(long startTimeMillis)
Sets the start time of this animation and all child animations

see
android.view.animation.Animation#setStartTime(long)

        super.setStartTime(startTimeMillis);

        final int count = mAnimations.size();
        final ArrayList<Animation> animations = mAnimations;

        for (int i = 0; i < count; i++) {
            Animation a = animations.get(i);
            a.setStartTime(startTimeMillis);
        }
    
public booleanwillChangeBounds()

        return (mFlags & PROPERTY_CHANGE_BOUNDS_MASK) == PROPERTY_CHANGE_BOUNDS_MASK;
    
public booleanwillChangeTransformationMatrix()

        return (mFlags & PROPERTY_MORPH_MATRIX_MASK) == PROPERTY_MORPH_MATRIX_MASK;