blob: 6579212ccd2c9fb6dc2aee9eb211c1a11adaea71 [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
19import android.animation.Animator;
George Mountfcfe5312015-05-01 14:27:45 -070020import android.animation.Animator.AnimatorListener;
21import android.animation.Animator.AnimatorPauseListener;
George Mount7764b922016-01-13 14:51:33 -080022import android.annotation.IntDef;
George Mountecd857b2014-06-19 07:51:08 -070023import android.content.Context;
24import android.content.res.TypedArray;
George Mountecd857b2014-06-19 07:51:08 -070025import android.util.AttributeSet;
Chet Haasefaebd8f2012-05-18 14:17:57 -070026import android.view.View;
27import android.view.ViewGroup;
George Mountfcfe5312015-05-01 14:27:45 -070028
George Mount7764b922016-01-13 14:51:33 -080029import com.android.internal.R;
30
31import java.lang.annotation.Retention;
32import java.lang.annotation.RetentionPolicy;
33
Chet Haasefaebd8f2012-05-18 14:17:57 -070034/**
35 * This transition tracks changes to the visibility of target views in the
36 * start and end scenes. Visibility is determined not just by the
37 * {@link View#setVisibility(int)} state of views, but also whether
38 * views exist in the current view hierarchy. The class is intended to be a
39 * utility for subclasses such as {@link Fade}, which use this visibility
40 * information to determine the specific animations to run when visibility
Chet Haase35a457a2013-08-26 07:34:12 -070041 * changes occur. Subclasses should implement one or both of the methods
Chet Haased82c8ac2013-08-26 14:20:16 -070042 * {@link #onAppear(ViewGroup, TransitionValues, int, TransitionValues, int)},
George Mountd6107a32014-03-10 16:51:16 -070043 * {@link #onDisappear(ViewGroup, TransitionValues, int, TransitionValues, int)} or
44 * {@link #onAppear(ViewGroup, View, TransitionValues, TransitionValues)},
45 * {@link #onDisappear(ViewGroup, View, TransitionValues, TransitionValues)}.
Chet Haasefaebd8f2012-05-18 14:17:57 -070046 */
47public abstract class Visibility extends Transition {
48
George Mount6ceac2e2014-07-31 09:58:16 -070049 static final String PROPNAME_VISIBILITY = "android:visibility:visibility";
Chet Haasefaebd8f2012-05-18 14:17:57 -070050 private static final String PROPNAME_PARENT = "android:visibility:parent";
George Mountd6107a32014-03-10 16:51:16 -070051 private static final String PROPNAME_SCREEN_LOCATION = "android:visibility:screenLocation";
52
George Mount7764b922016-01-13 14:51:33 -080053 /** @hide */
54 @Retention(RetentionPolicy.SOURCE)
55 @IntDef(flag=true, value={MODE_IN, MODE_OUT})
56 @interface VisibilityMode {}
57
George Mount18ab7992014-06-25 17:04:51 -070058 /**
59 * Mode used in {@link #setMode(int)} to make the transition
60 * operate on targets that are appearing. Maybe be combined with
George Mountad88e1b2014-07-18 15:41:13 -070061 * {@link #MODE_OUT} to target Visibility changes both in and out.
George Mount18ab7992014-06-25 17:04:51 -070062 */
George Mountad88e1b2014-07-18 15:41:13 -070063 public static final int MODE_IN = 0x1;
George Mount18ab7992014-06-25 17:04:51 -070064
65 /**
66 * Mode used in {@link #setMode(int)} to make the transition
67 * operate on targets that are disappearing. Maybe be combined with
George Mountad88e1b2014-07-18 15:41:13 -070068 * {@link #MODE_IN} to target Visibility changes both in and out.
George Mount18ab7992014-06-25 17:04:51 -070069 */
George Mountad88e1b2014-07-18 15:41:13 -070070 public static final int MODE_OUT = 0x2;
George Mount18ab7992014-06-25 17:04:51 -070071
Chet Haaseaf78bdd2013-08-27 16:06:26 -070072 private static final String[] sTransitionProperties = {
Chet Haase199acdf2013-07-24 18:40:55 -070073 PROPNAME_VISIBILITY,
George Mount20559072014-11-13 14:44:28 -080074 PROPNAME_PARENT,
Chet Haase199acdf2013-07-24 18:40:55 -070075 };
Chet Haasefaebd8f2012-05-18 14:17:57 -070076
Chet Haase6ebe3de2013-06-17 16:50:50 -070077 private static class VisibilityInfo {
78 boolean visibilityChange;
79 boolean fadeIn;
80 int startVisibility;
81 int endVisibility;
Chet Haase35a457a2013-08-26 07:34:12 -070082 ViewGroup startParent;
83 ViewGroup endParent;
Chet Haase6ebe3de2013-06-17 16:50:50 -070084 }
85
George Mountad88e1b2014-07-18 15:41:13 -070086 private int mMode = MODE_IN | MODE_OUT;
George Mount1349bb92016-03-22 13:41:57 -070087 private boolean mSuppressLayout = true;
George Mount18ab7992014-06-25 17:04:51 -070088
George Mountecd857b2014-06-19 07:51:08 -070089 public Visibility() {}
90
91 public Visibility(Context context, AttributeSet attrs) {
92 super(context, attrs);
93 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.VisibilityTransition);
Craig Mautner3b2cd1d2014-08-25 14:25:54 -070094 int mode = a.getInt(R.styleable.VisibilityTransition_transitionVisibilityMode, 0);
George Mountecd857b2014-06-19 07:51:08 -070095 a.recycle();
96 if (mode != 0) {
97 setMode(mode);
98 }
99 }
100
George Mount18ab7992014-06-25 17:04:51 -0700101 /**
George Mount1349bb92016-03-22 13:41:57 -0700102 * This tells the Visibility transition to suppress layout during the transition and release
103 * the suppression after the transition.
104 * @hide
105 */
106 public void setSuppressLayout(boolean suppress) {
107 this.mSuppressLayout = suppress;
108 }
109
110 /**
George Mount18ab7992014-06-25 17:04:51 -0700111 * Changes the transition to support appearing and/or disappearing Views, depending
112 * on <code>mode</code>.
113 *
114 * @param mode The behavior supported by this transition, a combination of
George Mountad88e1b2014-07-18 15:41:13 -0700115 * {@link #MODE_IN} and {@link #MODE_OUT}.
Craig Mautner3b2cd1d2014-08-25 14:25:54 -0700116 * @attr ref android.R.styleable#VisibilityTransition_transitionVisibilityMode
George Mount18ab7992014-06-25 17:04:51 -0700117 */
George Mount7764b922016-01-13 14:51:33 -0800118 public void setMode(@VisibilityMode int mode) {
George Mountad88e1b2014-07-18 15:41:13 -0700119 if ((mode & ~(MODE_IN | MODE_OUT)) != 0) {
120 throw new IllegalArgumentException("Only MODE_IN and MODE_OUT flags are allowed");
George Mount18ab7992014-06-25 17:04:51 -0700121 }
122 mMode = mode;
123 }
124
George Mountecd857b2014-06-19 07:51:08 -0700125 /**
126 * Returns whether appearing and/or disappearing Views are supported.
127 *
128 * Returns whether appearing and/or disappearing Views are supported. A combination of
George Mountad88e1b2014-07-18 15:41:13 -0700129 * {@link #MODE_IN} and {@link #MODE_OUT}.
Craig Mautner3b2cd1d2014-08-25 14:25:54 -0700130 * @attr ref android.R.styleable#VisibilityTransition_transitionVisibilityMode
George Mountecd857b2014-06-19 07:51:08 -0700131 */
George Mount7764b922016-01-13 14:51:33 -0800132 @VisibilityMode
George Mountecd857b2014-06-19 07:51:08 -0700133 public int getMode() {
134 return mMode;
135 }
136
Chet Haasefaebd8f2012-05-18 14:17:57 -0700137 @Override
Chet Haase199acdf2013-07-24 18:40:55 -0700138 public String[] getTransitionProperties() {
139 return sTransitionProperties;
140 }
141
George Mount62976722016-02-04 16:45:53 -0800142 private void captureValues(TransitionValues transitionValues) {
143 int visibility = transitionValues.view.getVisibility();
Chet Haased82c8ac2013-08-26 14:20:16 -0700144 transitionValues.values.put(PROPNAME_VISIBILITY, visibility);
145 transitionValues.values.put(PROPNAME_PARENT, transitionValues.view.getParent());
George Mountd6107a32014-03-10 16:51:16 -0700146 int[] loc = new int[2];
147 transitionValues.view.getLocationOnScreen(loc);
148 transitionValues.values.put(PROPNAME_SCREEN_LOCATION, loc);
Chet Haased82c8ac2013-08-26 14:20:16 -0700149 }
150
Chet Haase199acdf2013-07-24 18:40:55 -0700151 @Override
Chet Haased82c8ac2013-08-26 14:20:16 -0700152 public void captureStartValues(TransitionValues transitionValues) {
George Mount62976722016-02-04 16:45:53 -0800153 captureValues(transitionValues);
Chet Haased82c8ac2013-08-26 14:20:16 -0700154 }
155
156 @Override
157 public void captureEndValues(TransitionValues transitionValues) {
George Mount62976722016-02-04 16:45:53 -0800158 captureValues(transitionValues);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700159 }
160
Chet Haase199acdf2013-07-24 18:40:55 -0700161 /**
162 * Returns whether the view is 'visible' according to the given values
163 * object. This is determined by testing the same properties in the values
164 * object that are used to determine whether the object is appearing or
165 * disappearing in the {@link
Chet Haased82c8ac2013-08-26 14:20:16 -0700166 * Transition#createAnimator(ViewGroup, TransitionValues, TransitionValues)}
Chet Haase199acdf2013-07-24 18:40:55 -0700167 * method. This method can be called by, for example, subclasses that want
168 * to know whether the object is visible in the same way that Visibility
169 * determines it for the actual animation.
170 *
171 * @param values The TransitionValues object that holds the information by
172 * which visibility is determined.
173 * @return True if the view reference by <code>values</code> is visible,
174 * false otherwise.
175 */
176 public boolean isVisible(TransitionValues values) {
177 if (values == null) {
178 return false;
179 }
180 int visibility = (Integer) values.values.get(PROPNAME_VISIBILITY);
181 View parent = (View) values.values.get(PROPNAME_PARENT);
182
183 return visibility == View.VISIBLE && parent != null;
184 }
185
Todd Volkert0653f2592015-02-12 15:27:57 -0800186 private static VisibilityInfo getVisibilityChangeInfo(TransitionValues startValues,
Chet Haasefaebd8f2012-05-18 14:17:57 -0700187 TransitionValues endValues) {
Chet Haase7660d122013-09-13 13:29:31 -0700188 final VisibilityInfo visInfo = new VisibilityInfo();
Chet Haase6ebe3de2013-06-17 16:50:50 -0700189 visInfo.visibilityChange = false;
190 visInfo.fadeIn = false;
George Mount31a21722014-03-24 17:44:36 -0700191 if (startValues != null && startValues.values.containsKey(PROPNAME_VISIBILITY)) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700192 visInfo.startVisibility = (Integer) startValues.values.get(PROPNAME_VISIBILITY);
Chet Haase35a457a2013-08-26 07:34:12 -0700193 visInfo.startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700194 } else {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700195 visInfo.startVisibility = -1;
196 visInfo.startParent = null;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700197 }
George Mount31a21722014-03-24 17:44:36 -0700198 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700199 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY);
Chet Haase35a457a2013-08-26 07:34:12 -0700200 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700201 } else {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700202 visInfo.endVisibility = -1;
203 visInfo.endParent = null;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700204 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700205 if (startValues != null && endValues != null) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700206 if (visInfo.startVisibility == visInfo.endVisibility &&
207 visInfo.startParent == visInfo.endParent) {
208 return visInfo;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700209 } else {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700210 if (visInfo.startVisibility != visInfo.endVisibility) {
211 if (visInfo.startVisibility == View.VISIBLE) {
212 visInfo.fadeIn = false;
213 visInfo.visibilityChange = true;
214 } else if (visInfo.endVisibility == View.VISIBLE) {
215 visInfo.fadeIn = true;
216 visInfo.visibilityChange = true;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700217 }
218 // no visibilityChange if going between INVISIBLE and GONE
Chet Haase6ebe3de2013-06-17 16:50:50 -0700219 } else if (visInfo.startParent != visInfo.endParent) {
220 if (visInfo.endParent == null) {
221 visInfo.fadeIn = false;
222 visInfo.visibilityChange = true;
223 } else if (visInfo.startParent == null) {
224 visInfo.fadeIn = true;
225 visInfo.visibilityChange = true;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700226 }
227 }
228 }
George Mount79b27812014-09-12 16:39:04 -0700229 } else if (startValues == null && visInfo.endVisibility == View.VISIBLE) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700230 visInfo.fadeIn = true;
231 visInfo.visibilityChange = true;
George Mount79b27812014-09-12 16:39:04 -0700232 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700233 visInfo.fadeIn = false;
234 visInfo.visibilityChange = true;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700235 }
Chet Haase6ebe3de2013-06-17 16:50:50 -0700236 return visInfo;
237 }
238
239 @Override
Chet Haased82c8ac2013-08-26 14:20:16 -0700240 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
Chet Haase6ebe3de2013-06-17 16:50:50 -0700241 TransitionValues endValues) {
242 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues);
George Mount30da61d2014-05-09 13:17:52 -0700243 if (visInfo.visibilityChange
244 && (visInfo.startParent != null || visInfo.endParent != null)) {
245 if (visInfo.fadeIn) {
246 return onAppear(sceneRoot, startValues, visInfo.startVisibility,
247 endValues, visInfo.endVisibility);
248 } else {
249 return onDisappear(sceneRoot, startValues, visInfo.startVisibility,
250 endValues, visInfo.endVisibility
251 );
Chet Haasefaebd8f2012-05-18 14:17:57 -0700252 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700253 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700254 return null;
255 }
256
257 /**
George Mountd6107a32014-03-10 16:51:16 -0700258 * The default implementation of this method calls
259 * {@link #onAppear(ViewGroup, View, TransitionValues, TransitionValues)}.
260 * Subclasses should override this method or
261 * {@link #onAppear(ViewGroup, View, TransitionValues, TransitionValues)}.
262 * if they need to create an Animator when targets appear.
Chet Haased82c8ac2013-08-26 14:20:16 -0700263 * The method should only be called by the Visibility class; it is
264 * not intended to be called from external classes.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700265 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700266 * @param sceneRoot The root of the transition hierarchy
267 * @param startValues The target values in the start scene
268 * @param startVisibility The target visibility in the start scene
269 * @param endValues The target values in the end scene
270 * @param endVisibility The target visibility in the end scene
271 * @return An Animator to be started at the appropriate time in the
272 * overall transition for this scene change. A null value means no animation
273 * should be run.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700274 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700275 public Animator onAppear(ViewGroup sceneRoot,
Chet Haase6ebe3de2013-06-17 16:50:50 -0700276 TransitionValues startValues, int startVisibility,
277 TransitionValues endValues, int endVisibility) {
George Mountad88e1b2014-07-18 15:41:13 -0700278 if ((mMode & MODE_IN) != MODE_IN || endValues == null) {
George Mount18ab7992014-06-25 17:04:51 -0700279 return null;
280 }
Craig Stoute988ee12014-09-10 15:53:29 -0700281 if (startValues == null) {
282 VisibilityInfo parentVisibilityInfo = null;
283 View endParent = (View) endValues.view.getParent();
284 TransitionValues startParentValues = getMatchedTransitionValues(endParent,
285 false);
286 TransitionValues endParentValues = getTransitionValues(endParent, false);
287 parentVisibilityInfo =
288 getVisibilityChangeInfo(startParentValues, endParentValues);
289 if (parentVisibilityInfo.visibilityChange) {
290 return null;
291 }
292 }
George Mountd6107a32014-03-10 16:51:16 -0700293 return onAppear(sceneRoot, endValues.view, startValues, endValues);
294 }
295
296 /**
297 * The default implementation of this method returns a null Animator. Subclasses should
298 * override this method to make targets appear with the desired transition. The
299 * method should only be called from
300 * {@link #onAppear(ViewGroup, TransitionValues, int, TransitionValues, int)}.
301 *
302 * @param sceneRoot The root of the transition hierarchy
303 * @param view The View to make appear. This will be in the target scene's View hierarchy and
304 * will be VISIBLE.
305 * @param startValues The target values in the start scene
306 * @param endValues The target values in the end scene
307 * @return An Animator to be started at the appropriate time in the
308 * overall transition for this scene change. A null value means no animation
309 * should be run.
310 */
311 public Animator onAppear(ViewGroup sceneRoot, View view, TransitionValues startValues,
312 TransitionValues endValues) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700313 return null;
314 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700315
316 /**
George Mountd6107a32014-03-10 16:51:16 -0700317 * Subclasses should override this method or
318 * {@link #onDisappear(ViewGroup, View, TransitionValues, TransitionValues)}
319 * if they need to create an Animator when targets disappear.
Chet Haased82c8ac2013-08-26 14:20:16 -0700320 * The method should only be called by the Visibility class; it is
321 * not intended to be called from external classes.
George Mountd6107a32014-03-10 16:51:16 -0700322 * <p>
323 * The default implementation of this method attempts to find a View to use to call
324 * {@link #onDisappear(ViewGroup, View, TransitionValues, TransitionValues)},
325 * based on the situation of the View in the View hierarchy. For example,
326 * if a View was simply removed from its parent, then the View will be added
327 * into a {@link android.view.ViewGroupOverlay} and passed as the <code>view</code>
328 * parameter in {@link #onDisappear(ViewGroup, View, TransitionValues, TransitionValues)}.
329 * If a visible View is changed to be {@link View#GONE} or {@link View#INVISIBLE},
330 * then it can be used as the <code>view</code> and the visibility will be changed
331 * to {@link View#VISIBLE} for the duration of the animation. However, if a View
332 * is in a hierarchy which is also altering its visibility, the situation can be
333 * more complicated. In general, if a view that is no longer in the hierarchy in
334 * the end scene still has a parent (so its parent hierarchy was removed, but it
335 * was not removed from its parent), then it will be left alone to avoid side-effects from
336 * improperly removing it from its parent. The only exception to this is if
337 * the previous {@link Scene} was {@link Scene#getSceneForLayout(ViewGroup, int,
338 * android.content.Context) created from a layout resource file}, then it is considered
339 * safe to un-parent the starting scene view in order to make it disappear.</p>
Chet Haased82c8ac2013-08-26 14:20:16 -0700340 *
341 * @param sceneRoot The root of the transition hierarchy
342 * @param startValues The target values in the start scene
343 * @param startVisibility The target visibility in the start scene
344 * @param endValues The target values in the end scene
345 * @param endVisibility The target visibility in the end scene
346 * @return An Animator to be started at the appropriate time in the
347 * overall transition for this scene change. A null value means no animation
348 * should be run.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700349 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700350 public Animator onDisappear(ViewGroup sceneRoot,
Chet Haase6ebe3de2013-06-17 16:50:50 -0700351 TransitionValues startValues, int startVisibility,
352 TransitionValues endValues, int endVisibility) {
George Mountad88e1b2014-07-18 15:41:13 -0700353 if ((mMode & MODE_OUT) != MODE_OUT) {
George Mount18ab7992014-06-25 17:04:51 -0700354 return null;
355 }
356
George Mountd6107a32014-03-10 16:51:16 -0700357 View startView = (startValues != null) ? startValues.view : null;
358 View endView = (endValues != null) ? endValues.view : null;
359 View overlayView = null;
360 View viewToKeep = null;
361 if (endView == null || endView.getParent() == null) {
362 if (endView != null) {
363 // endView was removed from its parent - add it to the overlay
364 overlayView = endView;
365 } else if (startView != null) {
366 // endView does not exist. Use startView only under certain
367 // conditions, because placing a view in an overlay necessitates
368 // it being removed from its current parent
369 if (startView.getParent() == null) {
370 // no parent - safe to use
371 overlayView = startView;
George Mountd4c3c912014-06-09 12:31:34 -0700372 } else if (startView.getParent() instanceof View) {
George Mountd6107a32014-03-10 16:51:16 -0700373 View startParent = (View) startView.getParent();
George Mount79b27812014-09-12 16:39:04 -0700374 TransitionValues startParentValues = getTransitionValues(startParent, true);
George Mount9f1ac392014-09-07 15:04:03 -0700375 TransitionValues endParentValues = getMatchedTransitionValues(startParent,
376 true);
George Mount79b27812014-09-12 16:39:04 -0700377 VisibilityInfo parentVisibilityInfo =
378 getVisibilityChangeInfo(startParentValues, endParentValues);
379 if (!parentVisibilityInfo.visibilityChange) {
380 overlayView = TransitionUtils.copyViewImage(sceneRoot, startView,
381 startParent);
George Mountd4c3c912014-06-09 12:31:34 -0700382 } else if (startParent.getParent() == null) {
383 int id = startParent.getId();
384 if (id != View.NO_ID && sceneRoot.findViewById(id) != null
385 && mCanRemoveViews) {
386 // no parent, but its parent is unparented but the parent
387 // hierarchy has been replaced by a new hierarchy with the same id
388 // and it is safe to un-parent startView
389 overlayView = startView;
390 }
George Mountd6107a32014-03-10 16:51:16 -0700391 }
392 }
393 }
394 } else {
395 // visibility change
396 if (endVisibility == View.INVISIBLE) {
397 viewToKeep = endView;
398 } else {
399 // Becoming GONE
400 if (startView == endView) {
401 viewToKeep = endView;
402 } else {
403 overlayView = startView;
404 }
405 }
406 }
407 final int finalVisibility = endVisibility;
408 final ViewGroup finalSceneRoot = sceneRoot;
409
410 if (overlayView != null) {
411 // TODO: Need to do this for general case of adding to overlay
412 int[] screenLoc = (int[]) startValues.values.get(PROPNAME_SCREEN_LOCATION);
413 int screenX = screenLoc[0];
414 int screenY = screenLoc[1];
415 int[] loc = new int[2];
416 sceneRoot.getLocationOnScreen(loc);
417 overlayView.offsetLeftAndRight((screenX - loc[0]) - overlayView.getLeft());
418 overlayView.offsetTopAndBottom((screenY - loc[1]) - overlayView.getTop());
419 sceneRoot.getOverlay().add(overlayView);
420 Animator animator = onDisappear(sceneRoot, overlayView, startValues, endValues);
421 if (animator == null) {
422 sceneRoot.getOverlay().remove(overlayView);
423 } else {
424 final View finalOverlayView = overlayView;
George Mountfcfe5312015-05-01 14:27:45 -0700425 addListener(new TransitionListenerAdapter() {
George Mountd6107a32014-03-10 16:51:16 -0700426 @Override
George Mountfcfe5312015-05-01 14:27:45 -0700427 public void onTransitionEnd(Transition transition) {
George Mountd6107a32014-03-10 16:51:16 -0700428 finalSceneRoot.getOverlay().remove(finalOverlayView);
429 }
George Mountd6107a32014-03-10 16:51:16 -0700430 });
431 }
432 return animator;
433 }
434
435 if (viewToKeep != null) {
George Mount62976722016-02-04 16:45:53 -0800436 int originalVisibility = viewToKeep.getVisibility();
437 viewToKeep.setTransitionVisibility(View.VISIBLE);
George Mountd6107a32014-03-10 16:51:16 -0700438 Animator animator = onDisappear(sceneRoot, viewToKeep, startValues, endValues);
George Mountb5ef7f82014-07-09 14:55:03 -0700439 if (animator != null) {
George Mountfcfe5312015-05-01 14:27:45 -0700440 DisappearListener disappearListener = new DisappearListener(viewToKeep,
George Mount1349bb92016-03-22 13:41:57 -0700441 finalVisibility, mSuppressLayout);
George Mountfcfe5312015-05-01 14:27:45 -0700442 animator.addListener(disappearListener);
George Mount0b056a02015-06-29 10:26:10 -0700443 animator.addPauseListener(disappearListener);
George Mountfcfe5312015-05-01 14:27:45 -0700444 addListener(disappearListener);
George Mount62976722016-02-04 16:45:53 -0800445 } else {
George Mounte5a93aa2015-06-05 16:47:45 -0700446 viewToKeep.setTransitionVisibility(originalVisibility);
George Mountd6107a32014-03-10 16:51:16 -0700447 }
448 return animator;
449 }
450 return null;
451 }
452
George Mount4c20ea22014-06-17 10:14:39 -0700453 @Override
George Mountaef1ae32015-06-04 12:51:55 -0700454 public boolean isTransitionRequired(TransitionValues startValues, TransitionValues newValues) {
455 if (startValues == null && newValues == null) {
George Mount4c20ea22014-06-17 10:14:39 -0700456 return false;
457 }
George Mountaef1ae32015-06-04 12:51:55 -0700458 if (startValues != null && newValues != null &&
George Mountcba01b22014-10-22 14:39:43 -0700459 newValues.values.containsKey(PROPNAME_VISIBILITY) !=
George Mountaef1ae32015-06-04 12:51:55 -0700460 startValues.values.containsKey(PROPNAME_VISIBILITY)) {
George Mountcba01b22014-10-22 14:39:43 -0700461 // The transition wasn't targeted in either the start or end, so it couldn't
462 // have changed.
463 return false;
464 }
George Mountaef1ae32015-06-04 12:51:55 -0700465 VisibilityInfo changeInfo = getVisibilityChangeInfo(startValues, newValues);
George Mount4c20ea22014-06-17 10:14:39 -0700466 return changeInfo.visibilityChange && (changeInfo.startVisibility == View.VISIBLE ||
George Mountcba01b22014-10-22 14:39:43 -0700467 changeInfo.endVisibility == View.VISIBLE);
George Mount4c20ea22014-06-17 10:14:39 -0700468 }
469
George Mountd6107a32014-03-10 16:51:16 -0700470 /**
471 * The default implementation of this method returns a null Animator. Subclasses should
472 * override this method to make targets disappear with the desired transition. The
473 * method should only be called from
474 * {@link #onDisappear(ViewGroup, TransitionValues, int, TransitionValues, int)}.
475 *
476 * @param sceneRoot The root of the transition hierarchy
477 * @param view The View to make disappear. This will be in the target scene's View
478 * hierarchy or in an {@link android.view.ViewGroupOverlay} and will be
479 * VISIBLE.
480 * @param startValues The target values in the start scene
481 * @param endValues The target values in the end scene
482 * @return An Animator to be started at the appropriate time in the
483 * overall transition for this scene change. A null value means no animation
484 * should be run.
485 */
486 public Animator onDisappear(ViewGroup sceneRoot, View view, TransitionValues startValues,
487 TransitionValues endValues) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700488 return null;
489 }
George Mountfcfe5312015-05-01 14:27:45 -0700490
491 private static class DisappearListener
492 extends TransitionListenerAdapter implements AnimatorListener, AnimatorPauseListener {
George Mountfcfe5312015-05-01 14:27:45 -0700493 private final View mView;
494 private final int mFinalVisibility;
George Mount21290a62015-06-22 13:23:06 -0700495 private final ViewGroup mParent;
George Mount1349bb92016-03-22 13:41:57 -0700496 private final boolean mSuppressLayout;
George Mountfcfe5312015-05-01 14:27:45 -0700497
George Mounta7478ab2015-06-30 16:54:00 -0700498 private boolean mLayoutSuppressed;
George Mountfcfe5312015-05-01 14:27:45 -0700499 boolean mCanceled = false;
500
George Mount1349bb92016-03-22 13:41:57 -0700501 public DisappearListener(View view, int finalVisibility, boolean suppressLayout) {
George Mountfcfe5312015-05-01 14:27:45 -0700502 this.mView = view;
George Mountfcfe5312015-05-01 14:27:45 -0700503 this.mFinalVisibility = finalVisibility;
George Mount21290a62015-06-22 13:23:06 -0700504 this.mParent = (ViewGroup) view.getParent();
George Mount1349bb92016-03-22 13:41:57 -0700505 this.mSuppressLayout = suppressLayout;
George Mounta7478ab2015-06-30 16:54:00 -0700506 // Prevent a layout from including mView in its calculation.
507 suppressLayout(true);
George Mountfcfe5312015-05-01 14:27:45 -0700508 }
509
510 @Override
511 public void onAnimationPause(Animator animation) {
George Mount62976722016-02-04 16:45:53 -0800512 if (!mCanceled) {
George Mounte5a93aa2015-06-05 16:47:45 -0700513 mView.setTransitionVisibility(mFinalVisibility);
George Mountfcfe5312015-05-01 14:27:45 -0700514 }
515 }
516
517 @Override
518 public void onAnimationResume(Animator animation) {
George Mount62976722016-02-04 16:45:53 -0800519 if (!mCanceled) {
George Mounte5a93aa2015-06-05 16:47:45 -0700520 mView.setTransitionVisibility(View.VISIBLE);
George Mountfcfe5312015-05-01 14:27:45 -0700521 }
522 }
523
524 @Override
525 public void onAnimationCancel(Animator animation) {
526 mCanceled = true;
527 }
528
529 @Override
530 public void onAnimationRepeat(Animator animation) {
George Mountfcfe5312015-05-01 14:27:45 -0700531 }
532
533 @Override
534 public void onAnimationStart(Animator animation) {
George Mountfcfe5312015-05-01 14:27:45 -0700535 }
536
537 @Override
538 public void onAnimationEnd(Animator animation) {
539 hideViewWhenNotCanceled();
540 }
541
542 @Override
543 public void onTransitionEnd(Transition transition) {
544 hideViewWhenNotCanceled();
545 }
546
George Mount21290a62015-06-22 13:23:06 -0700547 @Override
548 public void onTransitionPause(Transition transition) {
George Mounta7478ab2015-06-30 16:54:00 -0700549 suppressLayout(false);
George Mount21290a62015-06-22 13:23:06 -0700550 }
551
552 @Override
553 public void onTransitionResume(Transition transition) {
George Mounta7478ab2015-06-30 16:54:00 -0700554 suppressLayout(true);
George Mount21290a62015-06-22 13:23:06 -0700555 }
556
George Mountfcfe5312015-05-01 14:27:45 -0700557 private void hideViewWhenNotCanceled() {
George Mounta7478ab2015-06-30 16:54:00 -0700558 if (!mCanceled) {
George Mount62976722016-02-04 16:45:53 -0800559 // Recreate the parent's display list in case it includes mView.
560 mView.setTransitionVisibility(mFinalVisibility);
561 if (mParent != null) {
562 mParent.invalidate();
George Mountfcfe5312015-05-01 14:27:45 -0700563 }
George Mounta7478ab2015-06-30 16:54:00 -0700564 }
565 // Layout is allowed now that the View is in its final state
566 suppressLayout(false);
567 }
568
569 private void suppressLayout(boolean suppress) {
George Mount1349bb92016-03-22 13:41:57 -0700570 if (mSuppressLayout && mLayoutSuppressed != suppress && mParent != null) {
George Mounta7478ab2015-06-30 16:54:00 -0700571 mLayoutSuppressed = suppress;
572 mParent.suppressLayout(suppress);
George Mountfcfe5312015-05-01 14:27:45 -0700573 }
574 }
575 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700576}