summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics/graphics
diff options
context:
space:
mode:
authorkmccormick <kmccormick@google.com>2013-04-01 18:08:28 -0700
committerkmccormick <kmccormick@google.com>2013-04-02 16:22:39 -0700
commit3b9f0aa058e95fa0c998f787a8f4f7225e9850c0 (patch)
tree141f36973a61d2a380520c3fe0045011ccb08c45 /docs/html/guide/topics/graphics
parent2ab257231fe774748298ab92f78564a5e19f23f0 (diff)
downloadframeworks_base-3b9f0aa058e95fa0c998f787a8f4f7225e9850c0.zip
frameworks_base-3b9f0aa058e95fa0c998f787a8f4f7225e9850c0.tar.gz
frameworks_base-3b9f0aa058e95fa0c998f787a8f4f7225e9850c0.tar.bz2
Doc update: Misc doc bugs
"Bug: 6515524" Change-Id: I1c8334e22637e9b55377a8743178bd5aa34ee9cd
Diffstat (limited to 'docs/html/guide/topics/graphics')
-rw-r--r--docs/html/guide/topics/graphics/prop-animation.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/graphics/prop-animation.jd b/docs/html/guide/topics/graphics/prop-animation.jd
index b733624..49d7bb8 100644
--- a/docs/html/guide/topics/graphics/prop-animation.jd
+++ b/docs/html/guide/topics/graphics/prop-animation.jd
@@ -479,7 +479,7 @@ ObjectAnimator.ofFloat(targetObject, "propName", 1f)
</li>
<li>Depending on what property or object you are animating, you might need to call the {@link
- android.view.View#invalidate invalidate()} method on a View force the screen to redraw itself with the
+ android.view.View#invalidate invalidate()} method on a View to force the screen to redraw itself with the
updated animated values. You do this in the
{@link android.animation.ValueAnimator.AnimatorUpdateListener#onAnimationUpdate onAnimationUpdate()}
callback. For example, animating the color property of a Drawable object only cause updates to the
@@ -825,7 +825,7 @@ rotationAnim.setDuration(5000ms);
<h2 id="views">Animating Views</h2>
- <p>The property animation system allow streamlined animation of View objects and offerse
+ <p>The property animation system allow streamlined animation of View objects and offers
a few advantages over the view animation system. The view
animation system transformed View objects by changing the way that they were drawn. This was
handled in the container of each View, because the View itself had no properties to manipulate.