blob: e7857c03d7ab02366b06e90b39259f3186d85ff6 [file] [log] [blame]
Chet Haasefaebd8f2012-05-18 14:17:57 -07001/*
2 * Copyright (C) 2013 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 */
Chet Haase6ebe3de2013-06-17 16:50:50 -070016
Chet Haased82c8ac2013-08-26 14:20:16 -070017package android.transition;
Chet Haasefaebd8f2012-05-18 14:17:57 -070018
George Mountecd857b2014-06-19 07:51:08 -070019import com.android.internal.R;
20
Chet Haasefaebd8f2012-05-18 14:17:57 -070021import android.animation.Animator;
22import android.animation.AnimatorListenerAdapter;
23import android.animation.ObjectAnimator;
George Mountecd857b2014-06-19 07:51:08 -070024import android.content.Context;
25import android.content.res.TypedArray;
26import android.util.AttributeSet;
Chet Haasefaebd8f2012-05-18 14:17:57 -070027import android.util.Log;
28import android.view.View;
29import android.view.ViewGroup;
30
31/**
32 * This transition tracks changes to the visibility of target views in the
33 * start and end scenes and fades views in or out when they become visible
34 * or non-visible. Visibility is determined by both the
35 * {@link View#setVisibility(int)} state of the view as well as whether it
36 * is parented in the current view hierarchy.
Chet Haased82c8ac2013-08-26 14:20:16 -070037 *
Chet Haaseb7a7fc92013-09-20 16:33:08 -070038 * <p>The ability of this transition to fade out a particular view, and the
39 * way that that fading operation takes place, is based on
40 * the situation of the view in the view hierarchy. For example, if a view was
41 * simply removed from its parent, then the view will be added into a {@link
42 * android.view.ViewGroupOverlay} while fading. If a visible view is
43 * changed to be {@link View#GONE} or {@link View#INVISIBLE}, then the
44 * visibility will be changed to {@link View#VISIBLE} for the duration of
45 * the animation. However, if a view is in a hierarchy which is also altering
46 * its visibility, the situation can be more complicated. In general, if a
47 * view that is no longer in the hierarchy in the end scene still has a
48 * parent (so its parent hierarchy was removed, but it was not removed from
49 * its parent), then it will be left alone to avoid side-effects from
50 * improperly removing it from its parent. The only exception to this is if
51 * the previous {@link Scene} was
52 * {@link Scene#getSceneForLayout(android.view.ViewGroup, int, android.content.Context)
53 * created from a layout resource file}, then it is considered safe to un-parent
54 * the starting scene view in order to fade it out.</p>
55 *
Chet Haased82c8ac2013-08-26 14:20:16 -070056 * <p>A Fade transition can be described in a resource file by using the
57 * tag <code>fade</code>, along with the standard
58 * attributes of {@link android.R.styleable#Fade} and
59 * {@link android.R.styleable#Transition}.</p>
60
Chet Haasefaebd8f2012-05-18 14:17:57 -070061 */
62public class Fade extends Visibility {
63
Chet Haasec43524f2013-07-16 14:40:11 -070064 private static boolean DBG = Transition.DBG && false;
65
Chet Haasefaebd8f2012-05-18 14:17:57 -070066 private static final String LOG_TAG = "Fade";
67
68 /**
69 * Fading mode used in {@link #Fade(int)} to make the transition
70 * operate on targets that are appearing. Maybe be combined with
George Mount18ab7992014-06-25 17:04:51 -070071 * {@link #OUT} to fade both in and out. Equivalent to
George Mountad88e1b2014-07-18 15:41:13 -070072 * {@link Visibility#MODE_IN}.
Chet Haasefaebd8f2012-05-18 14:17:57 -070073 */
George Mountad88e1b2014-07-18 15:41:13 -070074 public static final int IN = Visibility.MODE_IN;
George Mount18ab7992014-06-25 17:04:51 -070075
Chet Haasefaebd8f2012-05-18 14:17:57 -070076 /**
77 * Fading mode used in {@link #Fade(int)} to make the transition
78 * operate on targets that are disappearing. Maybe be combined with
George Mount18ab7992014-06-25 17:04:51 -070079 * {@link #IN} to fade both in and out. Equivalent to
George Mountad88e1b2014-07-18 15:41:13 -070080 * {@link Visibility#MODE_OUT}.
Chet Haasefaebd8f2012-05-18 14:17:57 -070081 */
George Mountad88e1b2014-07-18 15:41:13 -070082 public static final int OUT = Visibility.MODE_OUT;
Chet Haasefaebd8f2012-05-18 14:17:57 -070083
84 /**
85 * Constructs a Fade transition that will fade targets in and out.
86 */
87 public Fade() {
Chet Haasefaebd8f2012-05-18 14:17:57 -070088 }
89
90 /**
91 * Constructs a Fade transition that will fade targets in
92 * and/or out, according to the value of fadingMode.
93 *
94 * @param fadingMode The behavior of this transition, a combination of
95 * {@link #IN} and {@link #OUT}.
96 */
97 public Fade(int fadingMode) {
George Mount18ab7992014-06-25 17:04:51 -070098 setMode(fadingMode);
Chet Haasefaebd8f2012-05-18 14:17:57 -070099 }
100
George Mountecd857b2014-06-19 07:51:08 -0700101 public Fade(Context context, AttributeSet attrs) {
102 super(context, attrs);
103 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Fade);
104 int fadingMode = a.getInt(R.styleable.Fade_fadingMode, getMode());
105 setMode(fadingMode);
106 }
107
Chet Haasefaebd8f2012-05-18 14:17:57 -0700108 /**
109 * Utility method to handle creating and running the Animator.
110 */
George Mountd6107a32014-03-10 16:51:16 -0700111 private Animator createAnimation(View view, float startAlpha, float endAlpha) {
Chet Haase199acdf2013-07-24 18:40:55 -0700112 if (startAlpha == endAlpha) {
Chet Haase199acdf2013-07-24 18:40:55 -0700113 return null;
114 }
George Mountd6107a32014-03-10 16:51:16 -0700115 view.setTransitionAlpha(startAlpha);
116 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, "transitionAlpha", endAlpha);
Chet Haase23c61f62013-09-14 11:28:46 -0700117 if (DBG) {
118 Log.d(LOG_TAG, "Created animator " + anim);
119 }
George Mount1b2fb2c2014-04-25 17:07:58 -0700120 FadeAnimatorListener listener = new FadeAnimatorListener(view);
George Mountd6107a32014-03-10 16:51:16 -0700121 anim.addListener(listener);
122 anim.addPauseListener(listener);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700123 return anim;
124 }
125
Chet Haase6ebe3de2013-06-17 16:50:50 -0700126 @Override
George Mountd6107a32014-03-10 16:51:16 -0700127 public Animator onAppear(ViewGroup sceneRoot, View view,
128 TransitionValues startValues,
129 TransitionValues endValues) {
Chet Haased82c8ac2013-08-26 14:20:16 -0700130 if (DBG) {
131 View startView = (startValues != null) ? startValues.view : null;
Chet Haase23c61f62013-09-14 11:28:46 -0700132 Log.d(LOG_TAG, "Fade.onAppear: startView, startVis, endView, endVis = " +
George Mountd6107a32014-03-10 16:51:16 -0700133 startView + ", " + view);
Chet Haased82c8ac2013-08-26 14:20:16 -0700134 }
George Mountd6107a32014-03-10 16:51:16 -0700135 return createAnimation(view, 0, 1);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700136 }
137
138 @Override
George Mountd6107a32014-03-10 16:51:16 -0700139 public Animator onDisappear(ViewGroup sceneRoot, final View view, TransitionValues startValues,
140 TransitionValues endValues) {
George Mountd6107a32014-03-10 16:51:16 -0700141 return createAnimation(view, 1, 0);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700142 }
143
George Mountd6107a32014-03-10 16:51:16 -0700144 private static class FadeAnimatorListener extends AnimatorListenerAdapter {
145 private final View mView;
George Mountd6107a32014-03-10 16:51:16 -0700146 private boolean mCanceled = false;
George Mount1b2fb2c2014-04-25 17:07:58 -0700147 private float mPausedAlpha = -1;
George Mountdc5bf6a2014-09-17 15:28:06 -0700148 private boolean mLayerTypeChanged = false;
George Mountd6107a32014-03-10 16:51:16 -0700149
George Mount1b2fb2c2014-04-25 17:07:58 -0700150 public FadeAnimatorListener(View view) {
George Mountd6107a32014-03-10 16:51:16 -0700151 mView = view;
George Mountd6107a32014-03-10 16:51:16 -0700152 }
153
154 @Override
George Mountdc5bf6a2014-09-17 15:28:06 -0700155 public void onAnimationStart(Animator animator) {
156 if (mView.hasOverlappingRendering() && mView.getLayerType() == View.LAYER_TYPE_NONE) {
157 mLayerTypeChanged = true;
158 mView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
159 }
160 }
161
162 @Override
George Mountd6107a32014-03-10 16:51:16 -0700163 public void onAnimationCancel(Animator animator) {
164 mCanceled = true;
165 if (mPausedAlpha >= 0) {
166 mView.setTransitionAlpha(mPausedAlpha);
167 }
168 }
169
170 @Override
171 public void onAnimationEnd(Animator animator) {
172 if (!mCanceled) {
George Mount1b2fb2c2014-04-25 17:07:58 -0700173 mView.setTransitionAlpha(1);
George Mountd6107a32014-03-10 16:51:16 -0700174 }
George Mountdc5bf6a2014-09-17 15:28:06 -0700175 if (mLayerTypeChanged) {
176 mView.setLayerType(View.LAYER_TYPE_NONE, null);
177 }
George Mountd6107a32014-03-10 16:51:16 -0700178 }
179
180 @Override
181 public void onAnimationPause(Animator animator) {
182 mPausedAlpha = mView.getTransitionAlpha();
George Mount1b2fb2c2014-04-25 17:07:58 -0700183 mView.setTransitionAlpha(1);
George Mountd6107a32014-03-10 16:51:16 -0700184 }
185
186 @Override
187 public void onAnimationResume(Animator animator) {
188 mView.setTransitionAlpha(mPausedAlpha);
189 }
190 }
191}