From 500998d401e1c936bf60facecd5e9699d2eadb66 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Sun, 13 May 2012 15:35:02 -0700 Subject: [PATCH] Prevent ViewPropertyAnimators from getting started twice --- core/java/android/view/ViewPropertyAnimator.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java index 2012db2adb21a..ce6f4c5cd50b1 100644 --- a/core/java/android/view/ViewPropertyAnimator.java +++ b/core/java/android/view/ViewPropertyAnimator.java @@ -342,6 +342,7 @@ public class ViewPropertyAnimator { * otherwise), then this method can be used. */ public void start() { + mView.removeCallbacks(mAnimationStarter); startAnimation(); }