diff options
| author | John Reck <jreck@google.com> | 2014-07-18 16:22:09 -0700 |
|---|---|---|
| committer | John Reck <jreck@google.com> | 2014-07-19 02:00:15 +0000 |
| commit | c01bd1167a1b08d59557f214ddc48cf24d3b8d0a (patch) | |
| tree | 6b1b2e5dea2cdd0027a17cfdcccf9f781f1c52cc /core/java/android/view/ViewAnimationUtils.java | |
| parent | 6eed108eeb66d123c47e7066d23738ca8dd8bdd4 (diff) | |
Return Animator instead of ValueAnimator
Change-Id: I29a7cfdc7ffbb3a4d33f9e64f9d7ca791f5c947c
Diffstat (limited to 'core/java/android/view/ViewAnimationUtils.java')
| -rw-r--r-- | core/java/android/view/ViewAnimationUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/ViewAnimationUtils.java b/core/java/android/view/ViewAnimationUtils.java index bee35ae1c3ef..0a53b9181906 100644 --- a/core/java/android/view/ViewAnimationUtils.java +++ b/core/java/android/view/ViewAnimationUtils.java @@ -16,8 +16,8 @@ package android.view; +import android.animation.Animator; import android.animation.RevealAnimator; -import android.animation.ValueAnimator; /** * Defines common utilities for working with View's animations. @@ -36,7 +36,7 @@ public final class ViewAnimationUtils { * @param startRadius The starting radius of the animating circle. * @param endRadius The ending radius of the animating circle. */ - public static final ValueAnimator createCircularReveal(View view, + public static final Animator createCircularReveal(View view, int centerX, int centerY, float startRadius, float endRadius) { return new RevealAnimator(view, centerX, centerY, startRadius, endRadius, false); } |
