page.title=Animation Resources parent.title=Resource Types parent.link=available-resources.html @jd:body <div id="qv-wrapper"> <div id="qv"> <h2>In this document</h2> <ol> <li><a href="#Property">Property Animation</a></li> <li><a href="#View">View Animation</a> <ol> <li><a href="#Tween">Tween animation</a></li> <li><a href="#Frame">Frame animation</a></li> </ol> </li> </ol> <h2>See also</h2> <ol> <li><a href="{@docRoot}guide/topics/graphics/view-animation.html">View Animation</a></li> <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a></li> </ol> </div> </div> <p>An animation resource can define one of two types of animations:</p> <dl> <dt><a href="#Property">Property Animation</a></dt> <dd>Creates an animation by modifying an object's property values over a set period of time with an {@link android.animation.Animator}.</dd> <dt><a href="#View">View Animation</a></dt> <dd> <p>There are two types of animations that you can do with the view animation framework:</p> <ul> <li><a href="#Tween">Tween animation</a>: Creates an animation by performing a series of transformations on a single image with an {@link android.view.animation.Animation}</li> <li><a href="#Frame">Frame animation</a>: or creates an animation by showing a sequence of images in order with an {@link android.graphics.drawable.AnimationDrawable}.</li> </ul> </dd> </dl> <h2 id="Property">Property Animation</h2> <p>An animation defined in XML that modifies properties of the target object, such as background color or alpha value, over a set amount of time.</p> <dl class="xml"> <dt>file location:</dt> <dd><code>res/animator/<em>filename</em>.xml</code><br/> The filename will be used as the resource ID.</dd> <dt>compiled resource datatype:</dt> <dd>Resource pointer to a {@link android.animation.ValueAnimator}, {@link android.animation.ObjectAnimator}, or {@link android.animation.AnimatorSet}.</dd> <dt>resource reference:</dt> <dd> In Java: <code>R.animator.<em>filename</em></code><br/> In XML: <code>@[<em>package</em>:]animator/<em>filename</em></code> </dd> <dt>syntax:</dt> <dd> <pre class="stx"> <<a href="#animator-set-element">set</a> android:ordering=["together" | "sequentially"]> <<a href="#obj-animator-element">objectAnimator</a> android:propertyName="<em>string</em>" android:duration="<em>int</em>" android:valueFrom="<em>float</em> | <em>int</em> | <em>color</em>" android:valueTo="<em>float</em> | <em>int</em> | <em>color</em>" android:startOffset="<em>int</em>" android:repeatCount="<em>int</em>" android:repeatMode=["repeat" | "reverse"] android:valueType=["intType" | "floatType"]/> <<a href="#val-animator-element">animator</a> android:duration="<em>int</em>" android:valueFrom="<em>float</em> | <em>int</em> | <em>color</em>" android:valueTo="<em>float</em> | <em>int</em> | <em>color</em>" android:startOffset="<em>int</em>" android:repeatCount="<em>int</em>" android:repeatMode=["repeat" | "reverse"] android:valueType=["intType" | "floatType"]/> <<a href="#animator-set-element">set</a>> ... </set> </set> </pre> <p>The file must have a single root element: either <code><set></code>, <code><objectAnimator></code>, or <code><valueAnimator></code>. You can group animation elements together inside the <code><set></code> element, including other <code><set></code> elements. </p> </dd> <dt>elements:</dt> <dd> <dl class="tag-list"> <dt id="animator-set-element"><code><set></code></dt> <dd>A container that holds other animation elements (<code><objectAnimator></code>, <code><valueAnimator></code>, or other <code><set></code> elements). Represents an {@link android.animation.AnimatorSet}. <p>You can specify nested <code><set></code> tags to further group animations together. Each <code><set></code> can define its own <code>ordering</code> attribute.</p> <p class="caps">attributes:</p> <dl class="atn-list"> <dt> <code>android:ordering</code> </dt> <dd> <em>Keyword</em>. Specifies the play ordering of animations in this set. <table> <tr><th>Value</th><th>Description</th></tr> <tr><td><code>sequentially</code></td><td>Play animations in this set sequentially</td></tr> <tr><td><code>together</code> (default)</td><td>Play animations in this set at the same time.</td></tr> </table> </dd> </dl> </dd> <dt id="obj-animator-element"><code><objectAnimator></code></dt> <dd>Animates a specific property of an object over a specific amount of time. Represents an {@link android.animation.ObjectAnimator}.</p> <p class="caps">attributes:</p> <dl class="atn-list"> <dt> <code>android:propertyName</code> </dt> <dd> <em>String</em>. <strong>Required</strong>. The object's property to animate, referenced by its name. For example you can specify <code>"alpha"</code> or <code>"backgroundColor"</code> for a View object. The <code>objectAnimator</code> element does not expose a <code>target</code> attribute, however, so you cannot set the object to animate in the XML declaration. You have to inflate your animation XML resource by calling {@link android.animation.AnimatorInflater#loadAnimator loadAnimator()} and call {@link android.animation.ObjectAnimator#setTarget setTarget()} to set the target object that contains this property. </dd> <dt> <code>android:valueTo</code> </dt> <dd> <em>float, int, or color</em>. <strong>Required</strong>. The value where the animated property ends. Colors are represented as six digit hexadecimal numbers (for example, #333333). </dd> <dt> <code>android:valueFrom</code> </dt> <dd> <em>float, int, or color</em>. The value where the animated property starts. If not specified, the animation starts at the value obtained by the property's get method. Colors are represented as six digit hexadecimal numbers (for example, #333333). </dd> <dt> <code>android:duration</code> </dt> <dd> <em>int</em>. The time in milliseconds of the animation. 300 milliseconds is the default. </dd> <dt> <code>android:startOffset</code> </dt> <dd> <em>int</em>. The amount of milliseconds the animation delays after {@link android.animation.ObjectAnimator#start start()} is called. </dd> <dt> <code>android:repeatCount</code> </dt> <dd> <em>int</em>. How many times to repeat an animation. Set to <code>"-1"</code> to infinitely repeat or to a positive integer. For example, a value of <code>"1"</code> means that the animation is repeated once after the initial run of the animation, so the animation plays a total of two times. The default value is <code>"0"</code>, which means no repetition. </dd> <dt> <code>android:repeatMode</code> </dt> <dd> <em>int</em>. How an animation behaves when it reaches the end of the animation. <code>android:repeatCount</code> must be set to a positive integer or <code>"-1"</code> for this attribute to have an effect. Set to <code>"reverse"</code> to have the animation reverse direction with each iteration or <code>"repeat"</code> to have the animation loop from the beginning each time. </dd> <dt> <code>android:valueType</code> </dt> <dd> <em>Keyword</em>. Do not specify this attribute if the value is a color. The animation framework automatically handles color values <table> <tr><th>Value</th><th>Description</th></tr> <tr><td><code>intType</code></td><td>Specifies that the animated values are integers</td></tr> <tr><td><code>floatType</code> (default)</td><td>Specifies that the animated values are floats</td></tr> </table> </dd> </dl> </dd> <dt id="val-animator-element"><code><animator></code></dt> <dd>Performs an animation over a specified amount of time. Represents a {@link android.animation.ValueAnimator}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt> <code>android:valueTo</code> </dt> <dd> <em>float, int, or color</em>. <strong>Required</strong>. The value where the animation ends. Colors are represented as six digit hexadecimal numbers (for example, #333333). </dd> <dt> <code>android:valueFrom</code> </dt> <dd> <em>float, int, or color</em>. <strong>Required</strong>. The value where the animation starts. Colors are represented as six digit hexadecimal numbers (for example, #333333). </dd> <dt> <code>android:duration</code> </dt> <dd> <em>int</em>. The time in milliseconds of the animation. 300ms is the default. </dd> <dt> <code>android:startOffset</code> </dt> <dd> <em>int</em>. The amount of milliseconds the animation delays after {@link android.animation.ValueAnimator#start start()} is called. </dd> <dt> <code>android:repeatCount</code> </dt> <dd> <em>int</em>. How many times to repeat an animation. Set to <code>"-1"</code> to infinitely repeat or to a positive integer. For example, a value of <code>"1"</code> means that the animation is repeated once after the initial run of the animation, so the animation plays a total of two times. The default value is <code>"0"</code>, which means no repetition. </dd> <dt> <code>android:repeatMode</code> </dt> <dd> <em>int</em>. How an animation behaves when it reaches the end of the animation. <code>android:repeatCount</code> must be set to a positive integer or <code>"-1"</code> for this attribute to have an effect. Set to <code>"reverse"</code> to have the animation reverse direction with each iteration or <code>"repeat"</code> to have the animation loop from the beginning each time. </dd> <dt> <code>android:valueType</code> </dt> <dd> <em>Keyword</em>. Do not specify this attribute if the value is a color. The animation framework automatically handles color values. <table> <tr><th>Value</th><th>Description</th></tr> <tr><td><code>intType</code></td><td>Specifies that the animated values are integers</td></tr> <tr><td><code>floatType</code> (default)</td><td>Specifies that the animated values are floats</td></tr> </table> </dd> </dl> </dd> </dl> </dd> <!-- end elements and attributes --> <dt>example:</dt> <dd> <pp>XML file saved at <code>res/animator/property_animator.xml</code>:</p> <pre> <set android:ordering="sequentially"> <set> <objectAnimator android:propertyName="x" android:duration="500" android:valueTo="400" android:valueType="intType"/> <objectAnimator android:propertyName="y" android:duration="500" android:valueTo="300" android:valueType="intType"/> </set> <objectAnimator android:propertyName="alpha" android:duration="500" android:valueTo="1f"/> </set> </pre> <p>In order to run this animation, you must inflate the XML resources in your code to an {@link android.animation.AnimatorSet} object, and then set the target objects for all of the animations before starting the animation set. Calling {@link android.animation.AnimatorSet#setTarget setTarget()} sets a single target object for all children of the {@link android.animation.AnimatorSet} as a convenience. The following code shows how to do this:</p> <pre> AnimatorSet set = (AnimatorSet) AnimatorInflater.loadAnimator(myContext, R.anim.property_animator); set.setTarget(myObject); set.start(); </pre> </dd> <!-- end example --> <dt>see also:</dt> <dd> <ul> <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a></li> <li><a href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/animation/index.html">API Demos</a> for examples on how to use the property animation system.</li> </ul> </dd> </dl> <h2 id="View">View Animation</h2> The view animation framework supports both tween and frame by frame animations, which can both be declared in XML. The following sections describe how to use both methods. <h3 id="Tween">Tween animation</h3> <p>An animation defined in XML that performs transitions such as rotating, fading, moving, and stretching on a graphic. </p> <dl class="xml"> <dt>file location:</dt> <dd><code>res/anim/<em>filename</em>.xml</code><br/> The filename will be used as the resource ID.</dd> <dt>compiled resource datatype:</dt> <dd>Resource pointer to an {@link android.view.animation.Animation}.</dd> <dt>resource reference:</dt> <dd> In Java: <code>R.anim.<em>filename</em></code><br/> In XML: <code>@[<em>package</em>:]anim/<em>filename</em></code> </dd> <dt>syntax:</dt> <dd> <pre class="stx"> <?xml version="1.0" encoding="utf-8"?> <<a href="#set-element">set</a> xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@[package:]anim/<em>interpolator_resource</em>" android:shareInterpolator=["true" | "false"] > <<a href="#alpha-element">alpha</a> android:fromAlpha="<em>float</em>" android:toAlpha="<em>float</em>" /> <<a href="#scale-element">scale</a> android:fromXScale="<em>float</em>" android:toXScale="<em>float</em>" android:fromYScale="<em>float</em>" android:toYScale="<em>float</em>" android:pivotX="<em>float</em>" android:pivotY="<em>float</em>" /> <<a href="#translate-element">translate</a> android:fromXDelta="<em>float</em>" android:toXDelta="<em>float</em>" android:fromYDelta="<em>float</em>" android:toYDelta="<em>float</em>" /> <<a href="#rotate-element">rotate</a> android:fromDegrees="<em>float</em>" android:toDegrees="<em>float</em>" android:pivotX="<em>float</em>" android:pivotY="<em>float</em>" /> <<a href="#set-element">set</a>> ... </set> </set> </pre> <p>The file must have a single root element: either an <code><alpha></code>, <code><scale></code>, <code><translate></code>, <code><rotate></code>, or <code><set></code> element that holds a group (or groups) of other animation elements (even nested <code><set></code> elements). </p> </dd> <dt>elements:</dt> <dd> <dl class="tag-list"> <dt id="set-element"><code><set></code></dt> <dd>A container that holds other animation elements (<code><alpha></code>, <code><scale></code>, <code><translate></code>, <code><rotate></code>) or other <code><set></code> elements. Represents an {@link android.view.animation.AnimationSet}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:interpolator</code></dt> <dd><em>Interpolator resource</em>. An {@link android.view.animation.Interpolator} to apply on the animation. The value must be a reference to a resource that specifies an interpolator (not an interpolator class name). There are default interpolator resources available from the platform or you can create your own interpolator resource. See the discussion below for more about <a href="#Interpolators">Interpolators</a>.</dd> <dt><code>android:shareInterpolator</code></dt> <dd><em>Boolean</em>. "true" if you want to share the same interpolator among all child elements.</dd> </dl> </dd> <dt id="alpha-element"><code><alpha></code></dt> <dd>A fade-in or fade-out animation. Represents an {@link android.view.animation.AlphaAnimation}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:fromAlpha</code></dt> <dd><em>Float</em>. Starting opacity offset, where 0.0 is transparent and 1.0 is opaque.</dd> <dt><code>android:toAlpha</code></dt> <dd><em>Float</em>. Ending opacity offset, where 0.0 is transparent and 1.0 is opaque.</dd> </dl> <p>For more attributes supported by <code><alpha></code>, see the {@link android.view.animation.Animation} class reference (of which, all XML attributes are inherrited by this element).</p> </dd> <dt id="scale-element"><code><scale></code></dt> <dd>A resizing animation. You can specify the center point of the image from which it grows outward (or inward) by specifying {@code pivotX} and {@code pivotY}. For example, if these values are 0, 0 (top-left corner), all growth will be down and to the right. Represents a {@link android.view.animation.ScaleAnimation}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:fromXScale</code></dt> <dd><em>Float</em>. Starting X size offset, where 1.0 is no change.</dd> <dt><code>android:toXScale</code></dt> <dd><em>Float</em>. Ending X size offset, where 1.0 is no change.</dd> <dt><code>android:fromYScale</code></dt> <dd><em>Float</em>. Starting Y size offset, where 1.0 is no change.</dd> <dt><code>android:toYScale</code></dt> <dd><em>Float</em>. Ending Y size offset, where 1.0 is no change.</dd> <dt><code>android:pivotX</code></dt> <dd><em>Float</em>. The X coordinate to remain fixed when the object is scaled.</dd> <dt><code>android:pivotY</code></dt> <dd><em>Float</em>. The Y coordinate to remain fixed when the object is scaled.</dd> </dl> <p>For more attributes supported by <code><scale></code>, see the {@link android.view.animation.Animation} class reference (of which, all XML attributes are inherrited by this element).</p> </dd> <dt id="translate-element"><code><translate></code></dt> <dd>A vertical and/or horizontal motion. Supports the following attributes in any of the following three formats: values from -100 to 100 ending with "%", indicating a percentage relative to itself; values from -100 to 100 ending in "%p", indicating a percentage relative to its parent; a float value with no suffix, indicating an absolute value. Represents a {@link android.view.animation.TranslateAnimation}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:fromXDelta</code></dt> <dd><em>Float or percentage</em>. Starting X offset. Expressed either: in pixels relative to the normal position (such as {@code "5"}), in percentage relative to the element width (such as {@code "5%"}), or in percentage relative to the parent width (such as {@code "5%p"}).</dd> <dt><code>android:toXDelta</code></dt> <dd><em>Float or percentage</em>. Ending X offset. Expressed either: in pixels relative to the normal position (such as {@code "5"}), in percentage relative to the element width (such as {@code "5%"}), or in percentage relative to the parent width (such as {@code "5%p"}).</dd> <dt><code>android:fromYDelta</code></dt> <dd><em>Float or percentage</em>. Starting Y offset. Expressed either: in pixels relative to the normal position (such as {@code "5"}), in percentage relative to the element height (such as {@code "5%"}), or in percentage relative to the parent height (such as {@code "5%p"}).</dd> <dt><code>android:toYDelta</code></dt> <dd><em>Float or percentage</em>. Ending Y offset. Expressed either: in pixels relative to the normal position (such as {@code "5"}), in percentage relative to the element height (such as {@code "5%"}), or in percentage relative to the parent height (such as {@code "5%p"}).</dd> </dl> <p>For more attributes supported by <code><translate></code>, see the {@link android.view.animation.Animation} class reference (of which, all XML attributes are inherrited by this element).</p> </dd> <dt id="rotate-element"><code><rotate></code></dt> <dd>A rotation animation. Represents a {@link android.view.animation.RotateAnimation}. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:fromDegrees</code></dt> <dd><em>Float</em>. Starting angular position, in degrees.</dd> <dt><code>android:toDegrees</code></dt> <dd><em>Float</em>. Ending angular position, in degrees.</dd> <dt><code>android:pivotX</code></dt> <dd><em>Float or percentage</em>. The X coordinate of the center of rotation. Expressed either: in pixels relative to the object's left edge (such as {@code "5"}), in percentage relative to the object's left edge (such as {@code "5%"}), or in percentage relative to the parent container's left edge (such as {@code "5%p"}).</dd> <dt><code>android:pivotY</code></dt> <dd><em>Float or percentage</em>. The Y coordinate of the center of rotation. Expressed either: in pixels relative to the object's top edge (such as {@code "5"}), in percentage relative to the object's top edge (such as {@code "5%"}), or in percentage relative to the parent container's top edge (such as {@code "5%p"}).</dd> </dl> <p>For more attributes supported by <code><rotate></code>, see the {@link android.view.animation.Animation} class reference (of which, all XML attributes are inherrited by this element).</p> </dd> </dl> </dd> <!-- end elements and attributes --> <dt>example:</dt> <dd> <pp>XML file saved at <code>res/anim/hyperspace_jump.xml</code>:</p> <pre> <set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> <scale android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fromXScale="1.0" android:toXScale="1.4" android:fromYScale="1.0" android:toYScale="0.6" android:pivotX="50%" android:pivotY="50%" android:fillAfter="false" android:duration="700" /> <set android:interpolator="@android:anim/accelerate_interpolator" android:startOffset="700"> <scale android:fromXScale="1.4" android:toXScale="0.0" android:fromYScale="0.6" android:toYScale="0.0" android:pivotX="50%" android:pivotY="50%" android:duration="400" /> <rotate android:fromDegrees="0" android:toDegrees="-45" android:toYScale="0.0" android:pivotX="50%" android:pivotY="50%" android:duration="400" /> </set> </set> </pre> <p>This application code will apply the animation to an {@link android.widget.ImageView} and start the animation:</p> <pre> ImageView image = (ImageView) findViewById(R.id.image); Animation hyperspaceJump = AnimationUtils.{@link android.view.animation.AnimationUtils#loadAnimation(Context,int) loadAnimation}(this, R.anim.hyperspace_jump); image.{@link android.view.View#startAnimation(Animation) startAnimation}(hyperspaceJump); </pre> </dd> <!-- end example --> <dt>see also:</dt> <dd> <ul> <li><a href="{@docRoot}guide/topics/graphics/view-animation.html#tween-animation">2D Graphics: Tween Animation</a></li> </ul> </dd> </dl> <h4 id="Interpolators">Interpolators</h4> <p>An interpolator is an animation modifier defined in XML that affects the rate of change in an animation. This allows your existing animation effects to be accelerated, decelerated, repeated, bounced, etc.</p> <p>An interpolator is applied to an animation element with the {@code android:interpolator} attribute, the value of which is a reference to an interpolator resource.</p> <p>All interpolators available in Android are subclasses of the {@link android.view.animation.Interpolator} class. For each interpolator class, Android includes a public resource you can reference in order to apply the interpolator to an animation using the {@code android:interpolator} attribute. The following table specifies the resource to use for each interpolator:</p> <table> <tr><th>Interpolator class</th><th>Resource ID</th></tr> <tr> <td>{@link android.view.animation.AccelerateDecelerateInterpolator}</td> <td>{@code @android:anim/accelerate_decelerate_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.AccelerateInterpolator}</td> <td>{@code @android:anim/accelerate_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.AnticipateInterpolator}</td> <td>{@code @android:anim/anticipate_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.AnticipateOvershootInterpolator}</td> <td>{@code @android:anim/anticipate_overshoot_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.BounceInterpolator}</td> <td>{@code @android:anim/bounce_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.CycleInterpolator}</td> <td>{@code @android:anim/cycle_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.DecelerateInterpolator}</td> <td>{@code @android:anim/decelerate_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.LinearInterpolator}</td> <td>{@code @android:anim/linear_interpolator}</td> </tr> <tr> <td>{@link android.view.animation.OvershootInterpolator}</td> <td>{@code @android:anim/overshoot_interpolator}</td> </tr> </table> <p>Here's how you can apply one of these with the {@code android:interpolator} attribute:</p> <pre> <set android:interpolator="@android:anim/accelerate_interpolator"> ... </set> </pre> <h4>Custom interpolators</h4> <p>If you're not satisfied with the interpolators provided by the platform (listed in the table above), you can create a custom interpolator resource with modified attributes. For example, you can adjust the rate of acceleration for the {@link android.view.animation.AnticipateInterpolator}, or adjust the number of cycles for the {@link android.view.animation.CycleInterpolator}. In order to do so, you need to create your own interpolator resource in an XML file. </p> <dl class="xml"> <dt>file location:</dt> <dd><code>res/anim/<em>filename</em>.xml</code><br/> The filename will be used as the resource ID.</dd> <dt>compiled resource datatype:</dt> <dd>Resource pointer to the corresponding interpolator object.</dd> <dt>resource reference:</dt> <dd> In XML: <code>@[<em>package</em>:]anim/<em>filename</em></code> </dd> <dt>syntax:</dt> <dd> <pre class="stx"> <?xml version="1.0" encoding="utf-8"?> <<em>InterpolatorName</em> xmlns:android="http://schemas.android.com/apk/res/android" android:<em>attribute_name</em>="<em>value</em>" /> </pre> <p>If you don't apply any attributes, then your interpolator will function exactly the same as those provided by the platform (listed in the table above).</p> </dd> <dt>elements:</dt> <dd>Notice that each {@link android.view.animation.Interpolator} implementation, when defined in XML, begins its name in lowercase.</p> <dl class="tag-list"> <dt><code><accelerateDecelerateInterpolator></code></dt> <dd>The rate of change starts and ends slowly but accelerates through the middle. <p>No attributes.</p></dd> <dt><code><accelerateInterpolator></code></dt> <dd>The rate of change starts out slowly, then accelerates. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:factor</code></dt> <dd><em>Float</em>. The acceleration rate (default is 1).</dd> </dl> </dd> <dt><code><anticipateInterpolator></code></dt> <dd>The change starts backward then flings forward. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:tension</code></dt> <dd><em>Float</em>. The amount of tension to apply (default is 2).</dd> </dl> </dd> <dt><code><anticipateOvershootInterpolator></code></dt> <dd>The change starts backward, flings forward and overshoots the target value, then settles at the final value. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:tension</code></dt> <dd><em>Float</em>. The amount of tension to apply (default is 2).</dd> <dt><code>android:extraTension</code></dt> <dd><em>Float</em>. The amount by which to multiply the tension (default is 1.5).</dd> </dl> </dd> <dt><code><bounceInterpolator></code></dt> <dd>The change bounces at the end. <p>No attributes</p></dd> <dt><code><cycleInterpolator></code></dt> <dd>Repeats the animation for a specified number of cycles. The rate of change follows a sinusoidal pattern. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:cycles</code></dt> <dd><em>Integer</em>. The number of cycles (default is 1).</dd> </dl> </dd> <dt><code><decelerateInterpolator></code></dt> <dd>The rate of change starts out quickly, then decelerates. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:factor</code></dt> <dd><em>Float</em>. The deceleration rate (default is 1).</dd> </dl> </dd> <dt><code><linearInterpolator></code></dt> <dd>The rate of change is constant. <p>No attributes.</p></dd> <dt><code><overshootInterpolator></code></dt> <dd>The change flings forward and overshoots the last value, then comes back. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:tension</code></dt> <dd><em>Float</em>. The amount of tension to apply (default is 2).</dd> </dl> </dd> </dl> <dt>example:</dt> <dd> <p>XML file saved at <code>res/anim/my_overshoot_interpolator.xml</code>:</p> <pre> <?xml version="1.0" encoding="utf-8"?> <overshootInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:tension="7.0" /> </pre> <p>This animation XML will apply the interpolator:</p> <pre> <scale xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@anim/my_overshoot_interpolator" android:fromXScale="1.0" android:toXScale="3.0" android:fromYScale="1.0" android:toYScale="3.0" android:pivotX="50%" android:pivotY="50%" android:duration="700" /> </pre> </dd> </dl> <h3 id="Frame">Frame animation</h3> <p>An animation defined in XML that shows a sequence of images in order (like a film). </p> <dl class="xml"> <dt>file location:</dt> <dd><code>res/drawable/<em>filename</em>.xml</code><br/> The filename will be used as the resource ID.</dd> <dt>compiled resource datatype:</dt> <dd>Resource pointer to an {@link android.graphics.drawable.AnimationDrawable}.</dd> <dt>resource reference:</dt> <dd> In Java: <code>R.drawable.<em>filename</em></code><br/> In XML: <code>@[<em>package</em>:]drawable.<em>filename</em></code> </dd> <dt>syntax:</dt> <dd> <pre class="stx"> <?xml version="1.0" encoding="utf-8"?> <<a href="#animation-list-element">animation-list</a> xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot=["true" | "false"] > <<a href="#item-element">item</a> android:drawable="@[package:]drawable/<em>drawable_resource_name</em>" android:duration="<em>integer</em>" /> </animation-list> </pre> </dd> <dt>elements:</dt> <dd> <dl class="tag-list"> <dt id="animation-list-element"><code><animation-list></code></dt> <dd><strong>Required</strong>. This must be the root element. Contains one or more <code><item></code> elements. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:oneshot</code></dt> <dd><em>Boolean</em>. "true" if you want to perform the animation once; "false" to loop the animation.</dd> </dl> </dd> <dt id="item-element"><code><item></code></dt> <dd>A single frame of animation. Must be a child of a <code><animation-list></code> element. <p class="caps">attributes:</p> <dl class="atn-list"> <dt><code>android:drawable</code></dt> <dd><em>Drawable resource</em>. The drawable to use for this frame.</dd> <dt><code>android:duration</code></dt> <dd><em>Integer</em>. The duration to show this frame, in milliseconds.</dd> </dl> </dd> </dl> </dd> <!-- end elements and attributes --> <dt>example:</dt> <dd> <dl> <dt>XML file saved at <code>res/anim/rocket.xml</code>:</dt> <dd> <pre> <?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> <item android:drawable="@drawable/rocket_thrust1" android:duration="200" /> <item android:drawable="@drawable/rocket_thrust2" android:duration="200" /> <item android:drawable="@drawable/rocket_thrust3" android:duration="200" /> </animation-list> </pre> </dd> <dt>This application code will set the animation as the background for a View, then play the animation:</dt> <dd> <pre> ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image); rocketImage.{@link android.view.View#setBackgroundResource(int) setBackgroundResource}(R.drawable.rocket_thrust); rocketAnimation = (AnimationDrawable) rocketImage.{@link android.view.View#getBackground()}; rocketAnimation.{@link android.graphics.drawable.AnimationDrawable#start()}; </pre> </dd> </dl> </dd> <!-- end example --> <dt>see also:</dt> <dd> <ul> <li><a href="{@docRoot}guide/topics/graphics/view-animation.html#frame-animation">2D Graphics: Frame Animation</a></li> </ul> </dd> </dl>