Home | History | Annotate | Download | only in animation
      1 <html>
      2 <body>
      3 <p>
      4 These classes provide functionality for the property animation system, which allows you 
      5 to animate object properties of any type. <code>int</code>, <code>float</code>, and hexadecimal
      6 color values are supported by default. You can animate any other type by telling the system how
      7 to calculate the values for that given type with a custom {@link android.animation.TypeEvaluator}.
      8 </p>
      9 
     10 <p>For more information, see the
     11 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Animation</a> guide.</p>
     12 {@more}
     13 
     14 <p>
     15 You can set many different types of interpolators (contained in {@link android.view.animation}),
     16 specify {@link android.animation.Keyframe keyframes}, or group animations to play sequentially
     17 or simultaneously (with {@link android.animation.AnimatorSet}) to further control your animation
     18 behaviors.</p>
     19 
     20 </body>
     21 </html>