blob: 4c75935d6e23bd41c3a026d358b84f3c1ab10a07 [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.
John Reck291161a2014-07-22 07:31:09 -070044 *
ztenghui62f30e02014-06-05 09:55:04 -070045 * @param view The View will be clipped to the animating circle.
George Mount94882942015-07-01 11:07:13 -070046 * @param centerX The x coordinate of the center of the animating circle, relative to
47 * <code>view</code>.
48 * @param centerY The y coordinate of the center of the animating circle, relative to
49 * <code>view</code>.
ztenghui62f30e02014-06-05 09:55:04 -070050 * @param startRadius The starting radius of the animating circle.
51 * @param endRadius The ending radius of the animating circle.
52 */
Chris Craike83cbd42014-09-03 17:52:24 -070053 public static Animator createCircularReveal(View view,
ztenghui62f30e02014-06-05 09:55:04 -070054 int centerX, int centerY, float startRadius, float endRadius) {
Chris Craikaf4d04c2014-07-29 12:50:14 -070055 return new RevealAnimator(view, centerX, centerY, startRadius, endRadius);
ztenghui62f30e02014-06-05 09:55:04 -070056 }
57}