Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 18 | |
| 19 | import android.animation.Animator; |
| 20 | import android.animation.AnimatorSet; |
| 21 | import android.animation.ObjectAnimator; |
| 22 | import android.animation.PropertyValuesHolder; |
| 23 | import android.animation.ValueAnimator; |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 24 | import android.util.Property; |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 25 | import android.view.View; |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 26 | import android.view.ViewGroup; |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 27 | import android.view.ViewTreeObserver; |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 28 | import android.widget.ViewAnimator; |
Adam Cohen | 1558893 | 2015-05-26 23:03:31 -0700 | [diff] [blame] | 29 | |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 30 | import java.util.HashSet; |
Michael Jurka | 7c70d64 | 2013-10-23 15:21:32 +0200 | [diff] [blame] | 31 | import java.util.WeakHashMap; |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 32 | |
| 33 | public class LauncherAnimUtils { |
Michael Jurka | 7c70d64 | 2013-10-23 15:21:32 +0200 | [diff] [blame] | 34 | static WeakHashMap<Animator, Object> sAnimators = new WeakHashMap<Animator, Object>(); |
Michael Jurka | def8e65 | 2012-06-29 15:38:55 -0700 | [diff] [blame] | 35 | static Animator.AnimatorListener sEndAnimListener = new Animator.AnimatorListener() { |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 36 | public void onAnimationStart(Animator animation) { |
Michael Jurka | 7c70d64 | 2013-10-23 15:21:32 +0200 | [diff] [blame] | 37 | sAnimators.put(animation, null); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | public void onAnimationRepeat(Animator animation) { |
| 41 | } |
| 42 | |
| 43 | public void onAnimationEnd(Animator animation) { |
| 44 | sAnimators.remove(animation); |
| 45 | } |
| 46 | |
| 47 | public void onAnimationCancel(Animator animation) { |
| 48 | sAnimators.remove(animation); |
| 49 | } |
| 50 | }; |
| 51 | |
| 52 | public static void cancelOnDestroyActivity(Animator a) { |
Michael Jurka | def8e65 | 2012-06-29 15:38:55 -0700 | [diff] [blame] | 53 | a.addListener(sEndAnimListener); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 56 | // Helper method. Assumes a draw is pending, and that if the animation's duration is 0 |
| 57 | // it should be cancelled |
| 58 | public static void startAnimationAfterNextDraw(final Animator animator, final View view) { |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 59 | view.getViewTreeObserver().addOnDrawListener(new ViewTreeObserver.OnDrawListener() { |
Tony Wickham | 0bb211a | 2015-10-02 16:22:08 -0700 | [diff] [blame] | 60 | private boolean mStarted = false; |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 61 | |
Tony Wickham | 0bb211a | 2015-10-02 16:22:08 -0700 | [diff] [blame] | 62 | public void onDraw() { |
| 63 | if (mStarted) return; |
| 64 | mStarted = true; |
| 65 | // Use this as a signal that the animation was cancelled |
| 66 | if (animator.getDuration() == 0) { |
| 67 | return; |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 68 | } |
Tony Wickham | 0bb211a | 2015-10-02 16:22:08 -0700 | [diff] [blame] | 69 | animator.start(); |
| 70 | |
| 71 | final ViewTreeObserver.OnDrawListener listener = this; |
| 72 | view.post(new Runnable() { |
| 73 | public void run() { |
| 74 | view.getViewTreeObserver().removeOnDrawListener(listener); |
| 75 | } |
| 76 | }); |
| 77 | } |
| 78 | }); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 79 | } |
| 80 | |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 81 | public static void onDestroyActivity() { |
Michael Jurka | 7c70d64 | 2013-10-23 15:21:32 +0200 | [diff] [blame] | 82 | HashSet<Animator> animators = new HashSet<Animator>(sAnimators.keySet()); |
Winson Chung | 15ba53a | 2012-07-12 11:21:32 -0700 | [diff] [blame] | 83 | for (Animator a : animators) { |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 84 | if (a.isRunning()) { |
| 85 | a.cancel(); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 86 | } |
Michael Jurka | 7c70d64 | 2013-10-23 15:21:32 +0200 | [diff] [blame] | 87 | sAnimators.remove(a); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
| 91 | public static AnimatorSet createAnimatorSet() { |
| 92 | AnimatorSet anim = new AnimatorSet(); |
| 93 | cancelOnDestroyActivity(anim); |
| 94 | return anim; |
| 95 | } |
| 96 | |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 97 | public static ValueAnimator ofFloat(View target, float... values) { |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 98 | ValueAnimator anim = new ValueAnimator(); |
| 99 | anim.setFloatValues(values); |
| 100 | cancelOnDestroyActivity(anim); |
| 101 | return anim; |
| 102 | } |
| 103 | |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 104 | public static ObjectAnimator ofFloat(View target, Property<View, Float> property, |
| 105 | float... values) { |
| 106 | ObjectAnimator anim = ObjectAnimator.ofFloat(target, property, values); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 107 | cancelOnDestroyActivity(anim); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 108 | new FirstFrameAnimatorHelper(anim, target); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 109 | return anim; |
| 110 | } |
| 111 | |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 112 | public static ObjectAnimator ofViewAlphaAndScale(View target, |
| 113 | float alpha, float scaleX, float scaleY) { |
| 114 | return ofPropertyValuesHolder(target, |
| 115 | PropertyValuesHolder.ofFloat(View.ALPHA, alpha), |
| 116 | PropertyValuesHolder.ofFloat(View.SCALE_X, scaleX), |
| 117 | PropertyValuesHolder.ofFloat(View.SCALE_Y, scaleY)); |
| 118 | } |
| 119 | |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 120 | public static ObjectAnimator ofPropertyValuesHolder(View target, |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 121 | PropertyValuesHolder... values) { |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 122 | return ofPropertyValuesHolder(target, target, values); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | public static ObjectAnimator ofPropertyValuesHolder(Object target, |
| 126 | View view, PropertyValuesHolder... values) { |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 127 | ObjectAnimator anim = ObjectAnimator.ofPropertyValuesHolder(target, values); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 128 | cancelOnDestroyActivity(anim); |
| 129 | new FirstFrameAnimatorHelper(anim, view); |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 130 | return anim; |
| 131 | } |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 132 | |
| 133 | public static ValueAnimator animateViewHeight(final View v, int fromHeight, int toHeight) { |
| 134 | ValueAnimator anim = ValueAnimator.ofInt(fromHeight, toHeight); |
| 135 | anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { |
| 136 | @Override |
| 137 | public void onAnimationUpdate(ValueAnimator valueAnimator) { |
| 138 | int val = (Integer) valueAnimator.getAnimatedValue(); |
| 139 | ViewGroup.LayoutParams layoutParams = v.getLayoutParams(); |
| 140 | layoutParams.height = val; |
| 141 | v.setLayoutParams(layoutParams); |
| 142 | } |
| 143 | }); |
| 144 | return anim; |
| 145 | } |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 146 | } |