summaryrefslogtreecommitdiffstats
path: root/core/java/android/animation/package.html
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2011-01-16 19:48:06 -0800
committerRobert Ly <robertly@google.com>2011-01-19 21:39:45 -0800
commitf99b782b9f3a78fd814d6fd9be9b202142760677 (patch)
treed16d7f4d9ed98b922e544dd8f95aab168eb29609 /core/java/android/animation/package.html
parent3355e18f68c5a8fce62e783fe370afaf0899d655 (diff)
downloadframeworks_base-f99b782b9f3a78fd814d6fd9be9b202142760677.zip
frameworks_base-f99b782b9f3a78fd814d6fd9be9b202142760677.tar.gz
frameworks_base-f99b782b9f3a78fd814d6fd9be9b202142760677.tar.bz2
Doc change: animation devguide topic
Change-Id: I52cdd29616f7f30784c0f8352c035493c8d413dc
Diffstat (limited to 'core/java/android/animation/package.html')
-rw-r--r--core/java/android/animation/package.html19
1 files changed, 17 insertions, 2 deletions
diff --git a/core/java/android/animation/package.html b/core/java/android/animation/package.html
index b66669b..ff43260 100644
--- a/core/java/android/animation/package.html
+++ b/core/java/android/animation/package.html
@@ -1,6 +1,21 @@
<html>
<body>
-Provides classes for animating values over time, and setting those values on target
-objects.
+<p>
+These classes provide functionality for the property animation system, which allows you
+to animate object properties of any type. <code>int</code>, <code>float</code>, and hexadecimal
+color values are supported by default. You can animate any other type by telling the system how
+to calculate the values for that given type with a custom {@link android.animation.TypeEvaluator}.
+</p>
+
+<p>
+You can set many different types of interpolators (contained in {@link android.view.animation}),
+specify {@link android.animation.Keyframe keyframes}, or group animations to play sequentially
+or simultaneously (with {@link android.animation.AnimatorSet}) to further control your animation
+behaviors.</p>
+
+<p>
+For a guide on how to use the property animation system, see the
+<a href="{@docRoot}guide/topics/media/index.html">Animation</a> developer guide.
+</p>
</body>
</html>