diff options
author | Chet Haase <chet@google.com> | 2013-03-15 17:08:55 -0700 |
---|---|---|
committer | Chet Haase <chet@google.com> | 2013-03-20 09:06:20 -0700 |
commit | be19e030a14c8e398e8af97fa898ea80187704df (patch) | |
tree | a22f1f3b169373373048b0df0862f6cce88db91c /api/current.txt | |
parent | 63f1e2fb6b7102490b11523589b82c2101d3c079 (diff) | |
download | frameworks_base-be19e030a14c8e398e8af97fa898ea80187704df.zip frameworks_base-be19e030a14c8e398e8af97fa898ea80187704df.tar.gz frameworks_base-be19e030a14c8e398e8af97fa898ea80187704df.tar.bz2 |
Add auto-cancel ability to ObjectAnimator
Add a method that enables a new auto-cancel option to
ObjectAnimator. When set, any ObjectAnimator (when started) will
cause any running ObjectAnimator instance (with that flag set)
that has the same target and properties to cancel() itself prior
to starting the new one.
Issue #7426129 Add auto-cancel to animators
Change-Id: I586659c365289cdb9afb6c416bdbaf5630477149
Diffstat (limited to 'api/current.txt')
-rw-r--r-- | api/current.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index ad2a623..c8b4cad 100644 --- a/api/current.txt +++ b/api/current.txt @@ -2445,6 +2445,7 @@ package android.animation { method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String, android.animation.TypeEvaluator, java.lang.Object...); method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, android.animation.TypeEvaluator<V>, V...); method public static android.animation.ObjectAnimator ofPropertyValuesHolder(java.lang.Object, android.animation.PropertyValuesHolder...); + method public void setAutoCancel(boolean); method public void setProperty(android.util.Property); method public void setPropertyName(java.lang.String); } |