blob: 3e277eb47dd43606e23e749d7da17d81a4a00172 [file] [log] [blame]
ztenghui62f30e02014-06-05 09:55:04 -07001/*
2 * Copyright (C) 2014 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
17package android.view;
18
John Reckc01bd112014-07-18 16:22:09 -070019import android.animation.Animator;
John Recka3b35902014-11-14 13:33:24 -080020import android.animation.Animator.AnimatorListener;
ztenghui62f30e02014-06-05 09:55:04 -070021import android.animation.RevealAnimator;
ztenghui62f30e02014-06-05 09:55:04 -070022
23/**
24 * Defines common utilities for working with View's animations.
25 *
26 */
ztenghui1c2ebed2014-06-12 13:35:38 -070027public final class ViewAnimationUtils {
ztenghui62f30e02014-06-05 09:55:04 -070028 private ViewAnimationUtils() {}
29 /**
Chet Haase4c902fa2014-08-21 18:55:38 -070030 * Returns an Animator which can animate a clipping circle.
Chris Craike83cbd42014-09-03 17:52:24 -070031 * <p>
ztenghui62f30e02014-06-05 09:55:04 -070032 * Any shadow cast by the View will respect the circular clip from this animator.
Chris Craike83cbd42014-09-03 17:52:24 -070033 * <p>
34 * Only a single non-rectangular clip can be applied on a View at any time.
35 * Views clipped by a circular reveal animation take priority over
36 * {@link View#setClipToOutline(boolean) View Outline clipping}.
37 * <p>
John Reck291161a2014-07-22 07:31:09 -070038 * Note that the animation returned here is a one-shot animation. It cannot
John Recka3b35902014-11-14 13:33:24 -080039 * be re-used, and once started it cannot be paused or resumed. It is also
40 * an asynchronous animation that automatically runs off of the UI thread.
41 * As a result {@link AnimatorListener#onAnimationEnd(Animator)}
42 * will occur after the animation has ended, but it may be delayed depending
43 * on thread responsiveness.
Teng-Hui Zhu9b3be582016-04-01 16:42:47 -070044 * <p>
45 * Note that if any start delay is set on the reveal animator, the start radius
46 * will not be applied to the reveal circle until the start delay has passed.
47 * If it's desired to set a start radius on the reveal circle during the start
48 * delay, one workaround could be adding an animator with the same start and
49 * end radius. For example:
50 * <pre><code>
51 * public static Animator createRevealWithDelay(View view, int centerX, int centerY, float startRadius, float endRadius) {
52 * Animator delayAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, startRadius);
53 * delayAnimator.setDuration(delayTimeMS);
54 * Animator revealAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, endRadius);
55 * AnimatorSet set = new AnimatorSet();
56 * set.playSequentially(delayAnimator, revealAnimator);
57 * return set;
58 * }
59 * </code></pre>
John Reck291161a2014-07-22 07:31:09 -070060 *
ztenghui62f30e02014-06-05 09:55:04 -070061 * @param view The View will be clipped to the animating circle.
George Mount94882942015-07-01 11:07:13 -070062 * @param centerX The x coordinate of the center of the animating circle, relative to
63 * <code>view</code>.
64 * @param centerY The y coordinate of the center of the animating circle, relative to
65 * <code>view</code>.
ztenghui62f30e02014-06-05 09:55:04 -070066 * @param startRadius The starting radius of the animating circle.
67 * @param endRadius The ending radius of the animating circle.
68 */
Chris Craike83cbd42014-09-03 17:52:24 -070069 public static Animator createCircularReveal(View view,
ztenghui62f30e02014-06-05 09:55:04 -070070 int centerX, int centerY, float startRadius, float endRadius) {
Chris Craikaf4d04c2014-07-29 12:50:14 -070071 return new RevealAnimator(view, centerX, centerY, startRadius, endRadius);
ztenghui62f30e02014-06-05 09:55:04 -070072 }
73}