summaryrefslogtreecommitdiffstats
path: root/core/java/android/animation
diff options
context:
space:
mode:
authorChet Haase <chet@google.com>2011-02-23 16:59:03 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-02-23 16:59:03 -0800
commita8bdc2a42e49a8262de2ceb351e7437655ff7c66 (patch)
treea0f16d5eb2759c7684288bc00bd3789f8121820d /core/java/android/animation
parent1e231cbf0cbe6f84d0181a0bcb2bb29b50b55c68 (diff)
parent154f14508a11627d5a995b6fe2a14a83d794a6fe (diff)
downloadframeworks_base-a8bdc2a42e49a8262de2ceb351e7437655ff7c66.zip
frameworks_base-a8bdc2a42e49a8262de2ceb351e7437655ff7c66.tar.gz
frameworks_base-a8bdc2a42e49a8262de2ceb351e7437655ff7c66.tar.bz2
Merge "Fix bug with bad state in animators"
Diffstat (limited to 'core/java/android/animation')
-rwxr-xr-xcore/java/android/animation/ValueAnimator.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/animation/ValueAnimator.java b/core/java/android/animation/ValueAnimator.java
index 2e44d6d..b963117 100755
--- a/core/java/android/animation/ValueAnimator.java
+++ b/core/java/android/animation/ValueAnimator.java
@@ -902,6 +902,7 @@ public class ValueAnimator extends Animator {
if (mStartDelay == 0) {
// This sets the initial value of the animation, prior to actually starting it running
setCurrentPlayTime(getCurrentPlayTime());
+ mPlayingState = STOPPED;
if (mListeners != null) {
ArrayList<AnimatorListener> tmpListeners =