blob: da9ba5a7fd750c32127a8ad13d64bc5cbfbb2701 [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;
20import android.animation.AnimatorListenerAdapter;
21import android.animation.TimeInterpolator;
Chet Haase08735182013-06-04 10:44:40 -070022import android.util.ArrayMap;
Chet Haasec43524f2013-07-16 14:40:11 -070023import android.util.Log;
Chet Haasefaebd8f2012-05-18 14:17:57 -070024import android.util.LongSparseArray;
25import android.util.SparseArray;
26import android.view.SurfaceView;
27import android.view.TextureView;
28import android.view.View;
29import android.view.ViewGroup;
30import android.view.ViewOverlay;
31import android.widget.ListView;
Chet Haaseff58f922013-09-11 13:08:18 -070032import android.widget.Spinner;
Chet Haasefaebd8f2012-05-18 14:17:57 -070033
34import java.util.ArrayList;
Chet Haased82c8ac2013-08-26 14:20:16 -070035import java.util.List;
Chet Haasefaebd8f2012-05-18 14:17:57 -070036
37/**
38 * A Transition holds information about animations that will be run on its
39 * targets during a scene change. Subclasses of this abstract class may
Chet Haased82c8ac2013-08-26 14:20:16 -070040 * choreograph several child transitions ({@link TransitionSet} or they may
Chet Haasefaebd8f2012-05-18 14:17:57 -070041 * perform custom animations themselves. Any Transition has two main jobs:
42 * (1) capture property values, and (2) play animations based on changes to
43 * captured property values. A custom transition knows what property values
44 * on View objects are of interest to it, and also knows how to animate
45 * changes to those values. For example, the {@link Fade} transition tracks
46 * changes to visibility-related properties and is able to construct and run
47 * animations that fade items in or out based on changes to those properties.
48 *
49 * <p>Note: Transitions may not work correctly with either {@link SurfaceView}
50 * or {@link TextureView}, due to the way that these views are displayed
51 * on the screen. For SurfaceView, the problem is that the view is updated from
52 * a non-UI thread, so changes to the view due to transitions (such as moving
53 * and resizing the view) may be out of sync with the display inside those bounds.
54 * TextureView is more compatible with transitions in general, but some
Chet Haased82c8ac2013-08-26 14:20:16 -070055 * specific transitions (such as {@link Fade}) may not be compatible
Chet Haasefaebd8f2012-05-18 14:17:57 -070056 * with TextureView because they rely on {@link ViewOverlay} functionality,
57 * which does not currently work with TextureView.</p>
Chet Haased82c8ac2013-08-26 14:20:16 -070058 *
59 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
60 * directory. Transition resources consist of a tag name for one of the Transition
61 * subclasses along with attributes to define some of the attributes of that transition.
62 * For example, here is a minimal resource file that declares a {@link ChangeBounds} transition:</p>
63 *
64 * {@sample development/samples/ApiDemos/res/transition/changebounds.xml ChangeBounds}
65 *
66 * <p>Note that attributes for the transition are not required, just as they are
67 * optional when declared in code; Transitions created from XML resources will use
68 * the same defaults as their code-created equivalents. Here is a slightly more
69 * elaborate example which declares a {@link TransitionSet} transition with
70 * {@link ChangeBounds} and {@link Fade} child transitions:</p>
71 *
72 * {@sample
73 * development/samples/ApiDemos/res/transition/changebounds_fadeout_sequential.xml TransitionSet}
74 *
75 * <p>In this example, the transitionOrdering attribute is used on the TransitionSet
76 * object to change from the default {@link TransitionSet#ORDERING_TOGETHER} behavior
77 * to be {@link TransitionSet#ORDERING_SEQUENTIAL} instead. Also, the {@link Fade}
78 * transition uses a fadingMode of {@link Fade#OUT} instead of the default
79 * out-in behavior. Finally, note the use of the <code>targets</code> sub-tag, which
80 * takes a set of {@link android.R.styleable#TransitionTarget target} tags, each
81 * of which lists a specific <code>targetId</code> which this transition acts upon.
82 * Use of targets is optional, but can be used to either limit the time spent checking
83 * attributes on unchanging views, or limiting the types of animations run on specific views.
84 * In this case, we know that only the <code>grayscaleContainer</code> will be
85 * disappearing, so we choose to limit the {@link Fade} transition to only that view.</p>
86 *
87 * Further information on XML resource descriptions for transitions can be found for
88 * {@link android.R.styleable#Transition}, {@link android.R.styleable#TransitionSet},
89 * {@link android.R.styleable#TransitionTarget}, and {@link android.R.styleable#Fade}.
90 *
Chet Haasefaebd8f2012-05-18 14:17:57 -070091 */
Chet Haase6ebe3de2013-06-17 16:50:50 -070092public abstract class Transition implements Cloneable {
Chet Haasefaebd8f2012-05-18 14:17:57 -070093
94 private static final String LOG_TAG = "Transition";
95 static final boolean DBG = false;
96
Chet Haase199acdf2013-07-24 18:40:55 -070097 private String mName = getClass().getName();
98
Chet Haasefaebd8f2012-05-18 14:17:57 -070099 long mStartDelay = -1;
100 long mDuration = -1;
101 TimeInterpolator mInterpolator = null;
Chet Haased82c8ac2013-08-26 14:20:16 -0700102 ArrayList<Integer> mTargetIds = new ArrayList<Integer>();
103 ArrayList<View> mTargets = new ArrayList<View>();
Chet Haaseff58f922013-09-11 13:08:18 -0700104 ArrayList<Integer> mTargetIdExcludes = null;
105 ArrayList<View> mTargetExcludes = null;
106 ArrayList<Class> mTargetTypeExcludes = null;
107 ArrayList<Integer> mTargetIdChildExcludes = null;
108 ArrayList<View> mTargetChildExcludes = null;
109 ArrayList<Class> mTargetTypeChildExcludes = null;
Chet Haase6ebe3de2013-06-17 16:50:50 -0700110 private TransitionValuesMaps mStartValues = new TransitionValuesMaps();
111 private TransitionValuesMaps mEndValues = new TransitionValuesMaps();
Chet Haased82c8ac2013-08-26 14:20:16 -0700112 TransitionSet mParent = null;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700113
Chet Haase199acdf2013-07-24 18:40:55 -0700114 // Per-animator information used for later canceling when future transitions overlap
115 private static ThreadLocal<ArrayMap<Animator, AnimationInfo>> sRunningAnimators =
116 new ThreadLocal<ArrayMap<Animator, AnimationInfo>>();
117
Chet Haased82c8ac2013-08-26 14:20:16 -0700118 // Scene Root is set at createAnimator() time in the cloned Transition
Chet Haase6ebe3de2013-06-17 16:50:50 -0700119 ViewGroup mSceneRoot = null;
120
Chet Haaseb7a7fc92013-09-20 16:33:08 -0700121 // Whether removing views from their parent is possible. This is only for views
122 // in the start scene, which are no longer in the view hierarchy. This property
123 // is determined by whether the previous Scene was created from a layout
124 // resource, and thus the views from the exited scene are going away anyway
125 // and can be removed as necessary to achieve a particular effect, such as
126 // removing them from parents to add them to overlays.
127 boolean mCanRemoveViews = false;
128
Chet Haasee9d32ea2013-06-04 08:46:42 -0700129 // Track all animators in use in case the transition gets canceled and needs to
130 // cancel running animators
131 private ArrayList<Animator> mCurrentAnimators = new ArrayList<Animator>();
132
Chet Haasefaebd8f2012-05-18 14:17:57 -0700133 // Number of per-target instances of this Transition currently running. This count is
Chet Haase199acdf2013-07-24 18:40:55 -0700134 // determined by calls to start() and end()
Chet Haasefaebd8f2012-05-18 14:17:57 -0700135 int mNumInstances = 0;
136
Chet Haase199acdf2013-07-24 18:40:55 -0700137 // Whether this transition is currently paused, due to a call to pause()
138 boolean mPaused = false;
Chet Haasec43524f2013-07-16 14:40:11 -0700139
Chet Haasea56205c2013-09-10 11:30:22 -0700140 // Whether this transition has ended. Used to avoid pause/resume on transitions
141 // that have completed
142 private boolean mEnded = false;
143
Chet Haasec43524f2013-07-16 14:40:11 -0700144 // The set of listeners to be sent transition lifecycle events.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700145 ArrayList<TransitionListener> mListeners = null;
146
Chet Haased82c8ac2013-08-26 14:20:16 -0700147 // The set of animators collected from calls to createAnimator(),
148 // to be run in runAnimators()
Chet Haase199acdf2013-07-24 18:40:55 -0700149 ArrayList<Animator> mAnimators = new ArrayList<Animator>();
Chet Haasec43524f2013-07-16 14:40:11 -0700150
Chet Haasefaebd8f2012-05-18 14:17:57 -0700151 /**
152 * Constructs a Transition object with no target objects. A transition with
153 * no targets defaults to running on all target objects in the scene hierarchy
Chet Haased82c8ac2013-08-26 14:20:16 -0700154 * (if the transition is not contained in a TransitionSet), or all target
155 * objects passed down from its parent (if it is in a TransitionSet).
Chet Haasefaebd8f2012-05-18 14:17:57 -0700156 */
157 public Transition() {}
158
159 /**
160 * Sets the duration of this transition. By default, there is no duration
161 * (indicated by a negative number), which means that the Animator created by
162 * the transition will have its own specified duration. If the duration of a
163 * Transition is set, that duration will override the Animator duration.
164 *
165 * @param duration The length of the animation, in milliseconds.
166 * @return This transition object.
Chet Haased82c8ac2013-08-26 14:20:16 -0700167 * @attr ref android.R.styleable#Transition_duration
Chet Haasefaebd8f2012-05-18 14:17:57 -0700168 */
169 public Transition setDuration(long duration) {
170 mDuration = duration;
171 return this;
172 }
173
Chet Haase199acdf2013-07-24 18:40:55 -0700174 /**
175 * Returns the duration set on this transition. If no duration has been set,
176 * the returned value will be negative, indicating that resulting animators will
177 * retain their own durations.
178 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700179 * @return The duration set on this transition, in milliseconds, if one has been
180 * set, otherwise returns a negative number.
Chet Haase199acdf2013-07-24 18:40:55 -0700181 */
Chet Haasefaebd8f2012-05-18 14:17:57 -0700182 public long getDuration() {
183 return mDuration;
184 }
185
186 /**
187 * Sets the startDelay of this transition. By default, there is no delay
188 * (indicated by a negative number), which means that the Animator created by
189 * the transition will have its own specified startDelay. If the delay of a
190 * Transition is set, that delay will override the Animator delay.
191 *
192 * @param startDelay The length of the delay, in milliseconds.
Chet Haased82c8ac2013-08-26 14:20:16 -0700193 * @return This transition object.
194 * @attr ref android.R.styleable#Transition_startDelay
Chet Haasefaebd8f2012-05-18 14:17:57 -0700195 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700196 public Transition setStartDelay(long startDelay) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700197 mStartDelay = startDelay;
Chet Haased82c8ac2013-08-26 14:20:16 -0700198 return this;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700199 }
200
Chet Haase199acdf2013-07-24 18:40:55 -0700201 /**
202 * Returns the startDelay set on this transition. If no startDelay has been set,
203 * the returned value will be negative, indicating that resulting animators will
204 * retain their own startDelays.
205 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700206 * @return The startDelay set on this transition, in milliseconds, if one has
207 * been set, otherwise returns a negative number.
Chet Haase199acdf2013-07-24 18:40:55 -0700208 */
Chet Haasefaebd8f2012-05-18 14:17:57 -0700209 public long getStartDelay() {
210 return mStartDelay;
211 }
212
213 /**
214 * Sets the interpolator of this transition. By default, the interpolator
215 * is null, which means that the Animator created by the transition
216 * will have its own specified interpolator. If the interpolator of a
217 * Transition is set, that interpolator will override the Animator interpolator.
218 *
219 * @param interpolator The time interpolator used by the transition
Chet Haased82c8ac2013-08-26 14:20:16 -0700220 * @return This transition object.
221 * @attr ref android.R.styleable#Transition_interpolator
Chet Haasefaebd8f2012-05-18 14:17:57 -0700222 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700223 public Transition setInterpolator(TimeInterpolator interpolator) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700224 mInterpolator = interpolator;
Chet Haased82c8ac2013-08-26 14:20:16 -0700225 return this;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700226 }
227
Chet Haase199acdf2013-07-24 18:40:55 -0700228 /**
229 * Returns the interpolator set on this transition. If no interpolator has been set,
230 * the returned value will be null, indicating that resulting animators will
231 * retain their own interpolators.
232 *
233 * @return The interpolator set on this transition, if one has been set, otherwise
234 * returns null.
235 */
Chet Haasefaebd8f2012-05-18 14:17:57 -0700236 public TimeInterpolator getInterpolator() {
237 return mInterpolator;
238 }
239
240 /**
Chet Haase199acdf2013-07-24 18:40:55 -0700241 * Returns the set of property names used stored in the {@link TransitionValues}
Chet Haased82c8ac2013-08-26 14:20:16 -0700242 * object passed into {@link #captureStartValues(TransitionValues)} that
Chet Haase199acdf2013-07-24 18:40:55 -0700243 * this transition cares about for the purposes of canceling overlapping animations.
244 * When any transition is started on a given scene root, all transitions
245 * currently running on that same scene root are checked to see whether the
246 * properties on which they based their animations agree with the end values of
247 * the same properties in the new transition. If the end values are not equal,
248 * then the old animation is canceled since the new transition will start a new
249 * animation to these new values. If the values are equal, the old animation is
250 * allowed to continue and no new animation is started for that transition.
251 *
252 * <p>A transition does not need to override this method. However, not doing so
253 * will mean that the cancellation logic outlined in the previous paragraph
254 * will be skipped for that transition, possibly leading to artifacts as
255 * old transitions and new transitions on the same targets run in parallel,
256 * animating views toward potentially different end values.</p>
257 *
258 * @return An array of property names as described in the class documentation for
259 * {@link TransitionValues}. The default implementation returns <code>null</code>.
260 */
261 public String[] getTransitionProperties() {
262 return null;
263 }
264
265 /**
Chet Haased82c8ac2013-08-26 14:20:16 -0700266 * This method creates an animation that will be run for this transition
267 * given the information in the startValues and endValues structures captured
268 * earlier for the start and end scenes. Subclasses of Transition should override
269 * this method. The method should only be called by the transition system; it is
270 * not intended to be called from external classes.
271 *
272 * <p>This method is called by the transition's parent (all the way up to the
Chet Haasefaebd8f2012-05-18 14:17:57 -0700273 * topmost Transition in the hierarchy) with the sceneRoot and start/end
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700274 * values that the transition may need to set up initial target values
275 * and construct an appropriate animation. For example, if an overall
Chet Haased82c8ac2013-08-26 14:20:16 -0700276 * Transition is a {@link TransitionSet} consisting of several
Chet Haasefaebd8f2012-05-18 14:17:57 -0700277 * child transitions in sequence, then some of the child transitions may
278 * want to set initial values on target views prior to the overall
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700279 * Transition commencing, to put them in an appropriate state for the
Chet Haasefaebd8f2012-05-18 14:17:57 -0700280 * delay between that start and the child Transition start time. For
281 * example, a transition that fades an item in may wish to set the starting
282 * alpha value to 0, to avoid it blinking in prior to the transition
283 * actually starting the animation. This is necessary because the scene
284 * change that triggers the Transition will automatically set the end-scene
285 * on all target views, so a Transition that wants to animate from a
Chet Haased82c8ac2013-08-26 14:20:16 -0700286 * different value should set that value prior to returning from this method.</p>
Chet Haasefaebd8f2012-05-18 14:17:57 -0700287 *
288 * <p>Additionally, a Transition can perform logic to determine whether
289 * the transition needs to run on the given target and start/end values.
290 * For example, a transition that resizes objects on the screen may wish
291 * to avoid running for views which are not present in either the start
Chet Haased82c8ac2013-08-26 14:20:16 -0700292 * or end scenes.</p>
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700293 *
294 * <p>If there is an animator created and returned from this method, the
295 * transition mechanism will apply any applicable duration, startDelay,
296 * and interpolator to that animation and start it. A return value of
297 * <code>null</code> indicates that no animation should run. The default
298 * implementation returns null.</p>
Chet Haasefaebd8f2012-05-18 14:17:57 -0700299 *
300 * <p>The method is called for every applicable target object, which is
301 * stored in the {@link TransitionValues#view} field.</p>
302 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700303 *
304 * @param sceneRoot The root of the transition hierarchy.
305 * @param startValues The values for a specific target in the start scene.
306 * @param endValues The values for the target in the end scene.
307 * @return A 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.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700310 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700311 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
Chet Haasefaebd8f2012-05-18 14:17:57 -0700312 TransitionValues endValues) {
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700313 return null;
Chet Haasefaebd8f2012-05-18 14:17:57 -0700314 }
315
316 /**
Chet Haased82c8ac2013-08-26 14:20:16 -0700317 * This method, essentially a wrapper around all calls to createAnimator for all
318 * possible target views, is called with the entire set of start/end
Chet Haasefaebd8f2012-05-18 14:17:57 -0700319 * values. The implementation in Transition iterates through these lists
Chet Haased82c8ac2013-08-26 14:20:16 -0700320 * and calls {@link #createAnimator(ViewGroup, TransitionValues, TransitionValues)}
Chet Haasefaebd8f2012-05-18 14:17:57 -0700321 * with each set of start/end values on this transition. The
Chet Haased82c8ac2013-08-26 14:20:16 -0700322 * TransitionSet subclass overrides this method and delegates it to
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700323 * each of its children in succession.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700324 *
325 * @hide
326 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700327 protected void createAnimators(ViewGroup sceneRoot, TransitionValuesMaps startValues,
Chet Haase6ebe3de2013-06-17 16:50:50 -0700328 TransitionValuesMaps endValues) {
Chet Haasec43524f2013-07-16 14:40:11 -0700329 if (DBG) {
Chet Haased82c8ac2013-08-26 14:20:16 -0700330 Log.d(LOG_TAG, "createAnimators() for " + this);
Chet Haasec43524f2013-07-16 14:40:11 -0700331 }
Chet Haase6ebe3de2013-06-17 16:50:50 -0700332 ArrayMap<View, TransitionValues> endCopy =
333 new ArrayMap<View, TransitionValues>(endValues.viewValues);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700334 SparseArray<TransitionValues> endIdCopy =
Chet Haase6ebe3de2013-06-17 16:50:50 -0700335 new SparseArray<TransitionValues>(endValues.idValues.size());
336 for (int i = 0; i < endValues.idValues.size(); ++i) {
337 int id = endValues.idValues.keyAt(i);
338 endIdCopy.put(id, endValues.idValues.valueAt(i));
Chet Haasefaebd8f2012-05-18 14:17:57 -0700339 }
340 LongSparseArray<TransitionValues> endItemIdCopy =
Chet Haase6ebe3de2013-06-17 16:50:50 -0700341 new LongSparseArray<TransitionValues>(endValues.itemIdValues.size());
342 for (int i = 0; i < endValues.itemIdValues.size(); ++i) {
343 long id = endValues.itemIdValues.keyAt(i);
344 endItemIdCopy.put(id, endValues.itemIdValues.valueAt(i));
Chet Haasefaebd8f2012-05-18 14:17:57 -0700345 }
346 // Walk through the start values, playing everything we find
347 // Remove from the end set as we go
348 ArrayList<TransitionValues> startValuesList = new ArrayList<TransitionValues>();
349 ArrayList<TransitionValues> endValuesList = new ArrayList<TransitionValues>();
Chet Haase6ebe3de2013-06-17 16:50:50 -0700350 for (View view : startValues.viewValues.keySet()) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700351 TransitionValues start = null;
352 TransitionValues end = null;
353 boolean isInListView = false;
354 if (view.getParent() instanceof ListView) {
355 isInListView = true;
356 }
357 if (!isInListView) {
358 int id = view.getId();
Chet Haase6ebe3de2013-06-17 16:50:50 -0700359 start = startValues.viewValues.get(view) != null ?
360 startValues.viewValues.get(view) : startValues.idValues.get(id);
361 if (endValues.viewValues.get(view) != null) {
362 end = endValues.viewValues.get(view);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700363 endCopy.remove(view);
Chet Haasec46181a2013-09-16 13:56:21 -0700364 } else if (id != View.NO_ID) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700365 end = endValues.idValues.get(id);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700366 View removeView = null;
367 for (View viewToRemove : endCopy.keySet()) {
368 if (viewToRemove.getId() == id) {
369 removeView = viewToRemove;
370 }
371 }
372 if (removeView != null) {
373 endCopy.remove(removeView);
374 }
375 }
376 endIdCopy.remove(id);
377 if (isValidTarget(view, id)) {
378 startValuesList.add(start);
379 endValuesList.add(end);
380 }
381 } else {
382 ListView parent = (ListView) view.getParent();
383 if (parent.getAdapter().hasStableIds()) {
384 int position = parent.getPositionForView(view);
385 long itemId = parent.getItemIdAtPosition(position);
Chet Haase6ebe3de2013-06-17 16:50:50 -0700386 start = startValues.itemIdValues.get(itemId);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700387 endItemIdCopy.remove(itemId);
388 // TODO: deal with targetIDs for itemIDs for ListView items
389 startValuesList.add(start);
390 endValuesList.add(end);
391 }
392 }
393 }
Chet Haase6ebe3de2013-06-17 16:50:50 -0700394 int startItemIdCopySize = startValues.itemIdValues.size();
Chet Haasefaebd8f2012-05-18 14:17:57 -0700395 for (int i = 0; i < startItemIdCopySize; ++i) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700396 long id = startValues.itemIdValues.keyAt(i);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700397 if (isValidTarget(null, id)) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700398 TransitionValues start = startValues.itemIdValues.get(id);
399 TransitionValues end = endValues.itemIdValues.get(id);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700400 endItemIdCopy.remove(id);
401 startValuesList.add(start);
402 endValuesList.add(end);
403 }
404 }
405 // Now walk through the remains of the end set
406 for (View view : endCopy.keySet()) {
407 int id = view.getId();
408 if (isValidTarget(view, id)) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700409 TransitionValues start = startValues.viewValues.get(view) != null ?
410 startValues.viewValues.get(view) : startValues.idValues.get(id);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700411 TransitionValues end = endCopy.get(view);
412 endIdCopy.remove(id);
413 startValuesList.add(start);
414 endValuesList.add(end);
415 }
416 }
417 int endIdCopySize = endIdCopy.size();
418 for (int i = 0; i < endIdCopySize; ++i) {
419 int id = endIdCopy.keyAt(i);
420 if (isValidTarget(null, id)) {
Chet Haase6ebe3de2013-06-17 16:50:50 -0700421 TransitionValues start = startValues.idValues.get(id);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700422 TransitionValues end = endIdCopy.get(id);
423 startValuesList.add(start);
424 endValuesList.add(end);
425 }
426 }
427 int endItemIdCopySize = endItemIdCopy.size();
428 for (int i = 0; i < endItemIdCopySize; ++i) {
429 long id = endItemIdCopy.keyAt(i);
430 // TODO: Deal with targetIDs and itemIDs
Chet Haase6ebe3de2013-06-17 16:50:50 -0700431 TransitionValues start = startValues.itemIdValues.get(id);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700432 TransitionValues end = endItemIdCopy.get(id);
433 startValuesList.add(start);
434 endValuesList.add(end);
435 }
Chet Haase199acdf2013-07-24 18:40:55 -0700436 ArrayMap<Animator, AnimationInfo> runningAnimators = getRunningAnimators();
Chet Haasefaebd8f2012-05-18 14:17:57 -0700437 for (int i = 0; i < startValuesList.size(); ++i) {
438 TransitionValues start = startValuesList.get(i);
439 TransitionValues end = endValuesList.get(i);
Chet Haasec43524f2013-07-16 14:40:11 -0700440 // Only bother trying to animate with values that differ between start/end
441 if (start != null || end != null) {
442 if (start == null || !start.equals(end)) {
443 if (DBG) {
444 View view = (end != null) ? end.view : start.view;
445 Log.d(LOG_TAG, " differing start/end values for view " +
446 view);
447 if (start == null || end == null) {
Chet Haaseff58f922013-09-11 13:08:18 -0700448 Log.d(LOG_TAG, " " + ((start == null) ?
449 "start null, end non-null" : "start non-null, end null"));
Chet Haasec43524f2013-07-16 14:40:11 -0700450 } else {
451 for (String key : start.values.keySet()) {
452 Object startValue = start.values.get(key);
453 Object endValue = end.values.get(key);
454 if (startValue != endValue && !startValue.equals(endValue)) {
455 Log.d(LOG_TAG, " " + key + ": start(" + startValue +
456 "), end(" + endValue +")");
457 }
458 }
459 }
460 }
461 // TODO: what to do about targetIds and itemIds?
Chet Haased82c8ac2013-08-26 14:20:16 -0700462 Animator animator = createAnimator(sceneRoot, start, end);
Chet Haasec43524f2013-07-16 14:40:11 -0700463 if (animator != null) {
Chet Haase199acdf2013-07-24 18:40:55 -0700464 // Save animation info for future cancellation purposes
465 View view = null;
466 TransitionValues infoValues = null;
467 if (end != null) {
468 view = end.view;
469 String[] properties = getTransitionProperties();
470 if (view != null && properties != null && properties.length > 0) {
471 infoValues = new TransitionValues();
472 infoValues.view = view;
473 TransitionValues newValues = endValues.viewValues.get(view);
474 if (newValues != null) {
475 for (int j = 0; j < properties.length; ++j) {
476 infoValues.values.put(properties[j],
477 newValues.values.get(properties[j]));
478 }
479 }
480 int numExistingAnims = runningAnimators.size();
481 for (int j = 0; j < numExistingAnims; ++j) {
482 Animator anim = runningAnimators.keyAt(j);
483 AnimationInfo info = runningAnimators.get(anim);
484 if (info.values != null && info.view == view &&
485 ((info.name == null && getName() == null) ||
486 info.name.equals(getName()))) {
487 if (info.values.equals(infoValues)) {
488 // Favor the old animator
489 animator = null;
490 break;
491 }
492 }
493 }
494 }
495 } else {
496 view = (start != null) ? start.view : null;
497 }
498 if (animator != null) {
499 AnimationInfo info = new AnimationInfo(view, getName(), infoValues);
500 runningAnimators.put(animator, info);
501 mAnimators.add(animator);
502 }
Chet Haasec43524f2013-07-16 14:40:11 -0700503 }
Chet Haasec43524f2013-07-16 14:40:11 -0700504 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700505 }
506 }
507 }
508
509 /**
510 * Internal utility method for checking whether a given view/id
511 * is valid for this transition, where "valid" means that either
512 * the Transition has no target/targetId list (the default, in which
513 * cause the transition should act on all views in the hiearchy), or
514 * the given view is in the target list or the view id is in the
515 * targetId list. If the target parameter is null, then the target list
516 * is not checked (this is in the case of ListView items, where the
517 * views are ignored and only the ids are used).
518 */
519 boolean isValidTarget(View target, long targetId) {
Chet Haaseff58f922013-09-11 13:08:18 -0700520 if (mTargetIdExcludes != null && mTargetIdExcludes.contains(targetId)) {
521 return false;
522 }
523 if (mTargetExcludes != null && mTargetExcludes.contains(target)) {
524 return false;
525 }
526 if (mTargetTypeExcludes != null && target != null) {
527 int numTypes = mTargetTypeExcludes.size();
528 for (int i = 0; i < numTypes; ++i) {
529 Class type = mTargetTypeExcludes.get(i);
530 if (type.isInstance(target)) {
531 return false;
532 }
533 }
534 }
Chet Haased82c8ac2013-08-26 14:20:16 -0700535 if (mTargetIds.size() == 0 && mTargets.size() == 0) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700536 return true;
537 }
Chet Haased82c8ac2013-08-26 14:20:16 -0700538 if (mTargetIds.size() > 0) {
539 for (int i = 0; i < mTargetIds.size(); ++i) {
540 if (mTargetIds.get(i) == targetId) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700541 return true;
542 }
543 }
544 }
Chet Haased82c8ac2013-08-26 14:20:16 -0700545 if (target != null && mTargets.size() > 0) {
546 for (int i = 0; i < mTargets.size(); ++i) {
547 if (mTargets.get(i) == target) {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700548 return true;
549 }
550 }
551 }
552 return false;
553 }
554
Chet Haase199acdf2013-07-24 18:40:55 -0700555 private static ArrayMap<Animator, AnimationInfo> getRunningAnimators() {
556 ArrayMap<Animator, AnimationInfo> runningAnimators = sRunningAnimators.get();
557 if (runningAnimators == null) {
558 runningAnimators = new ArrayMap<Animator, AnimationInfo>();
559 sRunningAnimators.set(runningAnimators);
560 }
561 return runningAnimators;
562 }
563
Chet Haasefaebd8f2012-05-18 14:17:57 -0700564 /**
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700565 * This is called internally once all animations have been set up by the
566 * transition hierarchy. \
Chet Haasefaebd8f2012-05-18 14:17:57 -0700567 *
568 * @hide
569 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700570 protected void runAnimators() {
Chet Haase199acdf2013-07-24 18:40:55 -0700571 if (DBG) {
Chet Haased82c8ac2013-08-26 14:20:16 -0700572 Log.d(LOG_TAG, "runAnimators() on " + this);
Chet Haasec43524f2013-07-16 14:40:11 -0700573 }
Chet Haase199acdf2013-07-24 18:40:55 -0700574 start();
575 ArrayMap<Animator, AnimationInfo> runningAnimators = getRunningAnimators();
Chet Haased82c8ac2013-08-26 14:20:16 -0700576 // Now start every Animator that was previously created for this transition
Chet Haase199acdf2013-07-24 18:40:55 -0700577 for (Animator anim : mAnimators) {
Chet Haasec43524f2013-07-16 14:40:11 -0700578 if (DBG) {
579 Log.d(LOG_TAG, " anim: " + anim);
580 }
Chet Haase199acdf2013-07-24 18:40:55 -0700581 if (runningAnimators.containsKey(anim)) {
582 start();
583 runAnimator(anim, runningAnimators);
584 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700585 }
Chet Haase199acdf2013-07-24 18:40:55 -0700586 mAnimators.clear();
587 end();
Chet Haasefaebd8f2012-05-18 14:17:57 -0700588 }
589
Chet Haase199acdf2013-07-24 18:40:55 -0700590 private void runAnimator(Animator animator,
591 final ArrayMap<Animator, AnimationInfo> runningAnimators) {
Chet Haasee9d32ea2013-06-04 08:46:42 -0700592 if (animator != null) {
593 // TODO: could be a single listener instance for all of them since it uses the param
594 animator.addListener(new AnimatorListenerAdapter() {
595 @Override
596 public void onAnimationStart(Animator animation) {
597 mCurrentAnimators.add(animation);
598 }
599 @Override
600 public void onAnimationEnd(Animator animation) {
Chet Haase199acdf2013-07-24 18:40:55 -0700601 runningAnimators.remove(animation);
Chet Haasee9d32ea2013-06-04 08:46:42 -0700602 mCurrentAnimators.remove(animation);
603 }
604 });
605 animate(animator);
606 }
607 }
608
Chet Haasefaebd8f2012-05-18 14:17:57 -0700609 /**
Chet Haased82c8ac2013-08-26 14:20:16 -0700610 * Captures the values in the start scene for the properties that this
611 * transition monitors. These values are then passed as the startValues
612 * structure in a later call to
613 * {@link #createAnimator(ViewGroup, TransitionValues, TransitionValues)}.
614 * The main concern for an implementation is what the
Chet Haasefaebd8f2012-05-18 14:17:57 -0700615 * properties are that the transition cares about and what the values are
616 * for all of those properties. The start and end values will be compared
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700617 * later during the
Chet Haased82c8ac2013-08-26 14:20:16 -0700618 * {@link #createAnimator(android.view.ViewGroup, TransitionValues, TransitionValues)}
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700619 * method to determine what, if any, animations, should be run.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700620 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700621 * <p>Subclasses must implement this method. The method should only be called by the
622 * transition system; it is not intended to be called from external classes.</p>
623 *
Chet Haase2ea7f8b2013-06-21 15:00:05 -0700624 * @param transitionValues The holder for any values that the Transition
625 * wishes to store. Values are stored in the <code>values</code> field
626 * of this TransitionValues object and are keyed from
627 * a String value. For example, to store a view's rotation value,
628 * a transition might call
629 * <code>transitionValues.values.put("appname:transitionname:rotation",
630 * view.getRotation())</code>. The target view will already be stored in
631 * the transitionValues structure when this method is called.
Chet Haased82c8ac2013-08-26 14:20:16 -0700632 *
633 * @see #captureEndValues(TransitionValues)
634 * @see #createAnimator(ViewGroup, TransitionValues, TransitionValues)
Chet Haasefaebd8f2012-05-18 14:17:57 -0700635 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700636 public abstract void captureStartValues(TransitionValues transitionValues);
Chet Haasefaebd8f2012-05-18 14:17:57 -0700637
638 /**
Chet Haased82c8ac2013-08-26 14:20:16 -0700639 * Captures the values in the end scene for the properties that this
640 * transition monitors. These values are then passed as the endValues
641 * structure in a later call to
642 * {@link #createAnimator(ViewGroup, TransitionValues, TransitionValues)}.
643 * The main concern for an implementation is what the
644 * properties are that the transition cares about and what the values are
645 * for all of those properties. The start and end values will be compared
646 * later during the
647 * {@link #createAnimator(android.view.ViewGroup, TransitionValues, TransitionValues)}
648 * method to determine what, if any, animations, should be run.
649 *
650 * <p>Subclasses must implement this method. The method should only be called by the
651 * transition system; it is not intended to be called from external classes.</p>
652 *
653 * @param transitionValues The holder for any values that the Transition
654 * wishes to store. Values are stored in the <code>values</code> field
655 * of this TransitionValues object and are keyed from
656 * a String value. For example, to store a view's rotation value,
657 * a transition might call
658 * <code>transitionValues.values.put("appname:transitionname:rotation",
659 * view.getRotation())</code>. The target view will already be stored in
660 * the transitionValues structure when this method is called.
661 *
662 * @see #captureStartValues(TransitionValues)
663 * @see #createAnimator(ViewGroup, TransitionValues, TransitionValues)
664 */
665 public abstract void captureEndValues(TransitionValues transitionValues);
666
667 /**
668 * Adds the id of a target view that this Transition is interested in
Chet Haasefaebd8f2012-05-18 14:17:57 -0700669 * animating. By default, there are no targetIds, and a Transition will
670 * listen for changes on every view in the hierarchy below the sceneRoot
Chet Haased82c8ac2013-08-26 14:20:16 -0700671 * of the Scene being transitioned into. Setting targetIds constrains
Chet Haasefaebd8f2012-05-18 14:17:57 -0700672 * the Transition to only listen for, and act on, views with these IDs.
673 * Views with different IDs, or no IDs whatsoever, will be ignored.
674 *
Chet Haased82c8ac2013-08-26 14:20:16 -0700675 * <p>Note that using ids to specify targets implies that ids should be unique
676 * within the view hierarchy underneat the scene root.</p>
677 *
Chet Haasefaebd8f2012-05-18 14:17:57 -0700678 * @see View#getId()
Chet Haased82c8ac2013-08-26 14:20:16 -0700679 * @param targetId The id of a target view, must be a positive number.
680 * @return The Transition to which the targetId is added.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700681 * Returning the same object makes it easier to chain calls during
682 * construction, such as
Chet Haaseff58f922013-09-11 13:08:18 -0700683 * <code>transitionSet.addTransitions(new Fade()).addTarget(someId);</code>
Chet Haasefaebd8f2012-05-18 14:17:57 -0700684 */
Chet Haaseff58f922013-09-11 13:08:18 -0700685 public Transition addTarget(int targetId) {
Chet Haased82c8ac2013-08-26 14:20:16 -0700686 if (targetId > 0) {
687 mTargetIds.add(targetId);
688 }
689 return this;
690 }
691
692 /**
693 * Removes the given targetId from the list of ids that this Transition
694 * is interested in animating.
695 *
696 * @param targetId The id of a target view, must be a positive number.
697 * @return The Transition from which the targetId is removed.
698 * Returning the same object makes it easier to chain calls during
699 * construction, such as
700 * <code>transitionSet.addTransitions(new Fade()).removeTargetId(someId);</code>
701 */
Chet Haaseff58f922013-09-11 13:08:18 -0700702 public Transition removeTarget(int targetId) {
Chet Haased82c8ac2013-08-26 14:20:16 -0700703 if (targetId > 0) {
704 mTargetIds.remove(targetId);
705 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700706 return this;
707 }
708
709 /**
Chet Haaseff58f922013-09-11 13:08:18 -0700710 * Whether to add the given id to the list of target ids to exclude from this
711 * transition. The <code>exclude</code> parameter specifies whether the target
712 * should be added to or removed from the excluded list.
713 *
714 * <p>Excluding targets is a general mechanism for allowing transitions to run on
715 * a view hierarchy while skipping target views that should not be part of
716 * the transition. For example, you may want to avoid animating children
717 * of a specific ListView or Spinner. Views can be excluded either by their
718 * id, or by their instance reference, or by the Class of that view
719 * (eg, {@link Spinner}).</p>
720 *
721 * @see #excludeChildren(int, boolean)
722 * @see #excludeTarget(View, boolean)
723 * @see #excludeTarget(Class, boolean)
724 *
725 * @param targetId The id of a target to ignore when running this transition.
726 * @param exclude Whether to add the target to or remove the target from the
727 * current list of excluded targets.
728 * @return This transition object.
729 */
730 public Transition excludeTarget(int targetId, boolean exclude) {
731 mTargetIdExcludes = excludeId(mTargetIdExcludes, targetId, exclude);
732 return this;
733 }
734
735 /**
736 * Whether to add the children of the given id to the list of targets to exclude
737 * from this transition. The <code>exclude</code> parameter specifies whether
738 * the children of the target should be added to or removed from the excluded list.
739 * Excluding children in this way provides a simple mechanism for excluding all
740 * children of specific targets, rather than individually excluding each
741 * child individually.
742 *
743 * <p>Excluding targets is a general mechanism for allowing transitions to run on
744 * a view hierarchy while skipping target views that should not be part of
745 * the transition. For example, you may want to avoid animating children
746 * of a specific ListView or Spinner. Views can be excluded either by their
747 * id, or by their instance reference, or by the Class of that view
748 * (eg, {@link Spinner}).</p>
749 *
750 * @see #excludeTarget(int, boolean)
751 * @see #excludeChildren(View, boolean)
752 * @see #excludeChildren(Class, boolean)
753 *
754 * @param targetId The id of a target whose children should be ignored when running
755 * this transition.
756 * @param exclude Whether to add the target to or remove the target from the
757 * current list of excluded-child targets.
758 * @return This transition object.
759 */
760 public Transition excludeChildren(int targetId, boolean exclude) {
761 mTargetIdChildExcludes = excludeId(mTargetIdChildExcludes, targetId, exclude);
762 return this;
763 }
764
765 /**
766 * Utility method to manage the boilerplate code that is the same whether we
767 * are excluding targets or their children.
768 */
769 private ArrayList<Integer> excludeId(ArrayList<Integer> list, int targetId, boolean exclude) {
770 if (targetId > 0) {
771 if (exclude) {
772 list = ArrayListManager.add(list, targetId);
773 } else {
774 list = ArrayListManager.remove(list, targetId);
775 }
776 }
777 return list;
778 }
779
780 /**
781 * Whether to add the given target to the list of targets to exclude from this
782 * transition. The <code>exclude</code> parameter specifies whether the target
783 * should be added to or removed from the excluded list.
784 *
785 * <p>Excluding targets is a general mechanism for allowing transitions to run on
786 * a view hierarchy while skipping target views that should not be part of
787 * the transition. For example, you may want to avoid animating children
788 * of a specific ListView or Spinner. Views can be excluded either by their
789 * id, or by their instance reference, or by the Class of that view
790 * (eg, {@link Spinner}).</p>
791 *
792 * @see #excludeChildren(View, boolean)
793 * @see #excludeTarget(int, boolean)
794 * @see #excludeTarget(Class, boolean)
795 *
796 * @param target The target to ignore when running this transition.
797 * @param exclude Whether to add the target to or remove the target from the
798 * current list of excluded targets.
799 * @return This transition object.
800 */
801 public Transition excludeTarget(View target, boolean exclude) {
802 mTargetExcludes = excludeView(mTargetExcludes, target, exclude);
803 return this;
804 }
805
806 /**
807 * Whether to add the children of given target to the list of target children
808 * to exclude from this transition. The <code>exclude</code> parameter specifies
809 * whether the target should be added to or removed from the excluded list.
810 *
811 * <p>Excluding targets is a general mechanism for allowing transitions to run on
812 * a view hierarchy while skipping target views that should not be part of
813 * the transition. For example, you may want to avoid animating children
814 * of a specific ListView or Spinner. Views can be excluded either by their
815 * id, or by their instance reference, or by the Class of that view
816 * (eg, {@link Spinner}).</p>
817 *
818 * @see #excludeTarget(View, boolean)
819 * @see #excludeChildren(int, boolean)
820 * @see #excludeChildren(Class, boolean)
821 *
822 * @param target The target to ignore when running this transition.
823 * @param exclude Whether to add the target to or remove the target from the
824 * current list of excluded targets.
825 * @return This transition object.
826 */
827 public Transition excludeChildren(View target, boolean exclude) {
828 mTargetChildExcludes = excludeView(mTargetChildExcludes, target, exclude);
829 return this;
830 }
831
832 /**
833 * Utility method to manage the boilerplate code that is the same whether we
834 * are excluding targets or their children.
835 */
836 private ArrayList<View> excludeView(ArrayList<View> list, View target, boolean exclude) {
837 if (target != null) {
838 if (exclude) {
839 list = ArrayListManager.add(list, target);
840 } else {
841 list = ArrayListManager.remove(list, target);
842 }
843 }
844 return list;
845 }
846
847 /**
848 * Whether to add the given type to the list of types to exclude from this
849 * transition. The <code>exclude</code> parameter specifies whether the target
850 * type should be added to or removed from the excluded list.
851 *
852 * <p>Excluding targets is a general mechanism for allowing transitions to run on
853 * a view hierarchy while skipping target views that should not be part of
854 * the transition. For example, you may want to avoid animating children
855 * of a specific ListView or Spinner. Views can be excluded either by their
856 * id, or by their instance reference, or by the Class of that view
857 * (eg, {@link Spinner}).</p>
858 *
859 * @see #excludeChildren(Class, boolean)
860 * @see #excludeTarget(int, boolean)
861 * @see #excludeTarget(View, boolean)
862 *
863 * @param type The type to ignore when running this transition.
864 * @param exclude Whether to add the target type to or remove it from the
865 * current list of excluded target types.
866 * @return This transition object.
867 */
868 public Transition excludeTarget(Class type, boolean exclude) {
869 mTargetTypeExcludes = excludeType(mTargetTypeExcludes, type, exclude);
870 return this;
871 }
872
873 /**
874 * Whether to add the given type to the list of types whose children should
875 * be excluded from this transition. The <code>exclude</code> parameter
876 * specifies whether the target type should be added to or removed from
877 * the excluded list.
878 *
879 * <p>Excluding targets is a general mechanism for allowing transitions to run on
880 * a view hierarchy while skipping target views that should not be part of
881 * the transition. For example, you may want to avoid animating children
882 * of a specific ListView or Spinner. Views can be excluded either by their
883 * id, or by their instance reference, or by the Class of that view
884 * (eg, {@link Spinner}).</p>
885 *
886 * @see #excludeTarget(Class, boolean)
887 * @see #excludeChildren(int, boolean)
888 * @see #excludeChildren(View, boolean)
889 *
890 * @param type The type to ignore when running this transition.
891 * @param exclude Whether to add the target type to or remove it from the
892 * current list of excluded target types.
893 * @return This transition object.
894 */
895 public Transition excludeChildren(Class type, boolean exclude) {
896 mTargetTypeChildExcludes = excludeType(mTargetTypeChildExcludes, type, exclude);
897 return this;
898 }
899
900 /**
901 * Utility method to manage the boilerplate code that is the same whether we
902 * are excluding targets or their children.
903 */
904 private ArrayList<Class> excludeType(ArrayList<Class> list, Class type, boolean exclude) {
905 if (type != null) {
906 if (exclude) {
907 list = ArrayListManager.add(list, type);
908 } else {
909 list = ArrayListManager.remove(list, type);
910 }
911 }
912 return list;
913 }
914
915 /**
Chet Haasefaebd8f2012-05-18 14:17:57 -0700916 * Sets the target view instances that this Transition is interested in
917 * animating. By default, there are no targets, and a Transition will
918 * listen for changes on every view in the hierarchy below the sceneRoot
919 * of the Scene being transitioned into. Setting targets constrains
920 * the Transition to only listen for, and act on, these views.
921 * All other views will be ignored.
922 *
Chet Haaseff58f922013-09-11 13:08:18 -0700923 * <p>The target list is like the {@link #addTarget(int) targetId}
Chet Haasefaebd8f2012-05-18 14:17:57 -0700924 * list except this list specifies the actual View instances, not the ids
925 * of the views. This is an important distinction when scene changes involve
926 * view hierarchies which have been inflated separately; different views may
927 * share the same id but not actually be the same instance. If the transition
Chet Haaseff58f922013-09-11 13:08:18 -0700928 * should treat those views as the same, then {@link #addTarget(int)} should be used
Chet Haased82c8ac2013-08-26 14:20:16 -0700929 * instead of {@link #addTarget(View)}. If, on the other hand, scene changes involve
Chet Haasefaebd8f2012-05-18 14:17:57 -0700930 * changes all within the same view hierarchy, among views which do not
Chet Haased82c8ac2013-08-26 14:20:16 -0700931 * necessarily have ids set on them, then the target list of views may be more
Chet Haasefaebd8f2012-05-18 14:17:57 -0700932 * convenient.</p>
933 *
Chet Haaseff58f922013-09-11 13:08:18 -0700934 * @see #addTarget(int)
Chet Haased82c8ac2013-08-26 14:20:16 -0700935 * @param target A View on which the Transition will act, must be non-null.
936 * @return The Transition to which the target is added.
Chet Haasefaebd8f2012-05-18 14:17:57 -0700937 * Returning the same object makes it easier to chain calls during
938 * construction, such as
Chet Haased82c8ac2013-08-26 14:20:16 -0700939 * <code>transitionSet.addTransitions(new Fade()).addTarget(someView);</code>
Chet Haasefaebd8f2012-05-18 14:17:57 -0700940 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700941 public Transition addTarget(View target) {
942 mTargets.add(target);
943 return this;
944 }
945
946 /**
947 * Removes the given target from the list of targets that this Transition
948 * is interested in animating.
949 *
950 * @param target The target view, must be non-null.
951 * @return Transition The Transition from which the target is removed.
952 * Returning the same object makes it easier to chain calls during
953 * construction, such as
954 * <code>transitionSet.addTransitions(new Fade()).removeTarget(someView);</code>
955 */
956 public Transition removeTarget(View target) {
957 if (target != null) {
958 mTargets.remove(target);
959 }
Chet Haasefaebd8f2012-05-18 14:17:57 -0700960 return this;
961 }
962
963 /**
964 * Returns the array of target IDs that this transition limits itself to
965 * tracking and animating. If the array is null for both this method and
966 * {@link #getTargets()}, then this transition is
967 * not limited to specific views, and will handle changes to any views
968 * in the hierarchy of a scene change.
969 *
970 * @return the list of target IDs
971 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700972 public List<Integer> getTargetIds() {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700973 return mTargetIds;
974 }
975
976 /**
977 * Returns the array of target views that this transition limits itself to
978 * tracking and animating. If the array is null for both this method and
979 * {@link #getTargetIds()}, then this transition is
980 * not limited to specific views, and will handle changes to any views
981 * in the hierarchy of a scene change.
982 *
983 * @return the list of target views
984 */
Chet Haased82c8ac2013-08-26 14:20:16 -0700985 public List<View> getTargets() {
Chet Haasefaebd8f2012-05-18 14:17:57 -0700986 return mTargets;
987 }
988
989 /**
990 * Recursive method that captures values for the given view and the
991 * hierarchy underneath it.
992 * @param sceneRoot The root of the view hierarchy being captured
993 * @param start true if this capture is happening before the scene change,
994 * false otherwise
995 */
996 void captureValues(ViewGroup sceneRoot, boolean start) {
Chet Haasedf32aa82013-10-21 17:19:37 -0700997 clearValues(start);
Chet Haased82c8ac2013-08-26 14:20:16 -0700998 if (mTargetIds.size() > 0 || mTargets.size() > 0) {
999 if (mTargetIds.size() > 0) {
1000 for (int i = 0; i < mTargetIds.size(); ++i) {
1001 int id = mTargetIds.get(i);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001002 View view = sceneRoot.findViewById(id);
1003 if (view != null) {
1004 TransitionValues values = new TransitionValues();
1005 values.view = view;
Chet Haased82c8ac2013-08-26 14:20:16 -07001006 if (start) {
1007 captureStartValues(values);
1008 } else {
1009 captureEndValues(values);
1010 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001011 if (start) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001012 mStartValues.viewValues.put(view, values);
Chet Haase867a8662013-06-03 07:30:21 -07001013 if (id >= 0) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001014 mStartValues.idValues.put(id, values);
Chet Haase867a8662013-06-03 07:30:21 -07001015 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001016 } else {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001017 mEndValues.viewValues.put(view, values);
Chet Haase867a8662013-06-03 07:30:21 -07001018 if (id >= 0) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001019 mEndValues.idValues.put(id, values);
Chet Haase867a8662013-06-03 07:30:21 -07001020 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001021 }
1022 }
1023 }
1024 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001025 if (mTargets.size() > 0) {
1026 for (int i = 0; i < mTargets.size(); ++i) {
1027 View view = mTargets.get(i);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001028 if (view != null) {
1029 TransitionValues values = new TransitionValues();
1030 values.view = view;
Chet Haased82c8ac2013-08-26 14:20:16 -07001031 if (start) {
1032 captureStartValues(values);
1033 } else {
1034 captureEndValues(values);
1035 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001036 if (start) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001037 mStartValues.viewValues.put(view, values);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001038 } else {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001039 mEndValues.viewValues.put(view, values);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001040 }
1041 }
1042 }
1043 }
1044 } else {
1045 captureHierarchy(sceneRoot, start);
1046 }
1047 }
1048
1049 /**
Chet Haasedf32aa82013-10-21 17:19:37 -07001050 * Clear valuesMaps for specified start/end state
1051 *
1052 * @param start true if the start values should be cleared, false otherwise
1053 */
1054 void clearValues(boolean start) {
1055 if (start) {
1056 mStartValues.viewValues.clear();
1057 mStartValues.idValues.clear();
1058 mStartValues.itemIdValues.clear();
1059 } else {
1060 mEndValues.viewValues.clear();
1061 mEndValues.idValues.clear();
1062 mEndValues.itemIdValues.clear();
1063 }
1064 }
1065
1066 /**
Chet Haasefaebd8f2012-05-18 14:17:57 -07001067 * Recursive method which captures values for an entire view hierarchy,
1068 * starting at some root view. Transitions without targetIDs will use this
1069 * method to capture values for all possible views.
1070 *
1071 * @param view The view for which to capture values. Children of this View
1072 * will also be captured, recursively down to the leaf nodes.
1073 * @param start true if values are being captured in the start scene, false
1074 * otherwise.
1075 */
1076 private void captureHierarchy(View view, boolean start) {
1077 if (view == null) {
1078 return;
1079 }
1080 boolean isListViewItem = false;
1081 if (view.getParent() instanceof ListView) {
1082 isListViewItem = true;
1083 }
1084 if (isListViewItem && !((ListView) view.getParent()).getAdapter().hasStableIds()) {
1085 // ignore listview children unless we can track them with stable IDs
1086 return;
1087 }
Chet Haaseff58f922013-09-11 13:08:18 -07001088 int id = View.NO_ID;
1089 long itemId = View.NO_ID;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001090 if (!isListViewItem) {
1091 id = view.getId();
1092 } else {
1093 ListView listview = (ListView) view.getParent();
1094 int position = listview.getPositionForView(view);
Chet Haaseff58f922013-09-11 13:08:18 -07001095 itemId = listview.getItemIdAtPosition(position);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001096 view.setHasTransientState(true);
1097 }
Chet Haaseff58f922013-09-11 13:08:18 -07001098 if (mTargetIdExcludes != null && mTargetIdExcludes.contains(id)) {
1099 return;
1100 }
1101 if (mTargetExcludes != null && mTargetExcludes.contains(view)) {
1102 return;
1103 }
1104 if (mTargetTypeExcludes != null && view != null) {
1105 int numTypes = mTargetTypeExcludes.size();
1106 for (int i = 0; i < numTypes; ++i) {
1107 if (mTargetTypeExcludes.get(i).isInstance(view)) {
1108 return;
1109 }
1110 }
1111 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001112 TransitionValues values = new TransitionValues();
1113 values.view = view;
Chet Haased8d7c382013-09-23 11:26:36 -07001114 if (start) {
1115 captureStartValues(values);
1116 } else {
1117 captureEndValues(values);
1118 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001119 if (start) {
1120 if (!isListViewItem) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001121 mStartValues.viewValues.put(view, values);
Chet Haase867a8662013-06-03 07:30:21 -07001122 if (id >= 0) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001123 mStartValues.idValues.put((int) id, values);
Chet Haase867a8662013-06-03 07:30:21 -07001124 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001125 } else {
Chet Haaseff58f922013-09-11 13:08:18 -07001126 mStartValues.itemIdValues.put(itemId, values);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001127 }
1128 } else {
1129 if (!isListViewItem) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001130 mEndValues.viewValues.put(view, values);
Chet Haase867a8662013-06-03 07:30:21 -07001131 if (id >= 0) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001132 mEndValues.idValues.put((int) id, values);
Chet Haase867a8662013-06-03 07:30:21 -07001133 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001134 } else {
Chet Haaseff58f922013-09-11 13:08:18 -07001135 mEndValues.itemIdValues.put(itemId, values);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001136 }
1137 }
1138 if (view instanceof ViewGroup) {
Chet Haaseff58f922013-09-11 13:08:18 -07001139 // Don't traverse child hierarchy if there are any child-excludes on this view
1140 if (mTargetIdChildExcludes != null && mTargetIdChildExcludes.contains(id)) {
1141 return;
1142 }
1143 if (mTargetChildExcludes != null && mTargetChildExcludes.contains(view)) {
1144 return;
1145 }
1146 if (mTargetTypeChildExcludes != null && view != null) {
1147 int numTypes = mTargetTypeChildExcludes.size();
1148 for (int i = 0; i < numTypes; ++i) {
1149 if (mTargetTypeChildExcludes.get(i).isInstance(view)) {
1150 return;
1151 }
1152 }
1153 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001154 ViewGroup parent = (ViewGroup) view;
1155 for (int i = 0; i < parent.getChildCount(); ++i) {
1156 captureHierarchy(parent.getChildAt(i), start);
1157 }
1158 }
1159 }
1160
1161 /**
Chet Haase6ebe3de2013-06-17 16:50:50 -07001162 * This method can be called by transitions to get the TransitionValues for
1163 * any particular view during the transition-playing process. This might be
1164 * necessary, for example, to query the before/after state of related views
1165 * for a given transition.
1166 */
Chet Haased82c8ac2013-08-26 14:20:16 -07001167 public TransitionValues getTransitionValues(View view, boolean start) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001168 if (mParent != null) {
1169 return mParent.getTransitionValues(view, start);
1170 }
1171 TransitionValuesMaps valuesMaps = start ? mStartValues : mEndValues;
1172 TransitionValues values = valuesMaps.viewValues.get(view);
1173 if (values == null) {
1174 int id = view.getId();
1175 if (id >= 0) {
1176 values = valuesMaps.idValues.get(id);
1177 }
1178 if (values == null && view.getParent() instanceof ListView) {
1179 ListView listview = (ListView) view.getParent();
1180 int position = listview.getPositionForView(view);
1181 long itemId = listview.getItemIdAtPosition(position);
1182 values = valuesMaps.itemIdValues.get(itemId);
1183 }
1184 // TODO: Doesn't handle the case where a view was parented to a
1185 // ListView (with an itemId), but no longer is
1186 }
1187 return values;
1188 }
1189
1190 /**
Chet Haase199acdf2013-07-24 18:40:55 -07001191 * Pauses this transition, sending out calls to {@link
1192 * TransitionListener#onTransitionPause(Transition)} to all listeners
1193 * and pausing all running animators started by this transition.
1194 *
1195 * @hide
1196 */
1197 public void pause() {
Chet Haasea56205c2013-09-10 11:30:22 -07001198 if (!mEnded) {
1199 ArrayMap<Animator, AnimationInfo> runningAnimators = getRunningAnimators();
1200 int numOldAnims = runningAnimators.size();
1201 for (int i = numOldAnims - 1; i >= 0; i--) {
1202 Animator anim = runningAnimators.keyAt(i);
1203 anim.pause();
Chet Haase199acdf2013-07-24 18:40:55 -07001204 }
Chet Haasea56205c2013-09-10 11:30:22 -07001205 if (mListeners != null && mListeners.size() > 0) {
1206 ArrayList<TransitionListener> tmpListeners =
1207 (ArrayList<TransitionListener>) mListeners.clone();
1208 int numListeners = tmpListeners.size();
1209 for (int i = 0; i < numListeners; ++i) {
1210 tmpListeners.get(i).onTransitionPause(this);
1211 }
1212 }
1213 mPaused = true;
Chet Haase199acdf2013-07-24 18:40:55 -07001214 }
Chet Haase199acdf2013-07-24 18:40:55 -07001215 }
1216
1217 /**
1218 * Resumes this transition, sending out calls to {@link
1219 * TransitionListener#onTransitionPause(Transition)} to all listeners
1220 * and pausing all running animators started by this transition.
1221 *
1222 * @hide
1223 */
1224 public void resume() {
1225 if (mPaused) {
Chet Haasea56205c2013-09-10 11:30:22 -07001226 if (!mEnded) {
1227 ArrayMap<Animator, AnimationInfo> runningAnimators = getRunningAnimators();
1228 int numOldAnims = runningAnimators.size();
1229 for (int i = numOldAnims - 1; i >= 0; i--) {
1230 Animator anim = runningAnimators.keyAt(i);
1231 anim.resume();
1232 }
1233 if (mListeners != null && mListeners.size() > 0) {
1234 ArrayList<TransitionListener> tmpListeners =
1235 (ArrayList<TransitionListener>) mListeners.clone();
1236 int numListeners = tmpListeners.size();
1237 for (int i = 0; i < numListeners; ++i) {
1238 tmpListeners.get(i).onTransitionResume(this);
1239 }
Chet Haase199acdf2013-07-24 18:40:55 -07001240 }
1241 }
1242 mPaused = false;
1243 }
1244 }
1245
1246 /**
Chet Haasefaebd8f2012-05-18 14:17:57 -07001247 * Called by TransitionManager to play the transition. This calls
Chet Haased82c8ac2013-08-26 14:20:16 -07001248 * createAnimators() to set things up and create all of the animations and then
Chet Haase2ea7f8b2013-06-21 15:00:05 -07001249 * runAnimations() to actually start the animations.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001250 */
Chet Haase6ebe3de2013-06-17 16:50:50 -07001251 void playTransition(ViewGroup sceneRoot) {
Chet Haase199acdf2013-07-24 18:40:55 -07001252 ArrayMap<Animator, AnimationInfo> runningAnimators = getRunningAnimators();
1253 int numOldAnims = runningAnimators.size();
1254 for (int i = numOldAnims - 1; i >= 0; i--) {
1255 Animator anim = runningAnimators.keyAt(i);
1256 if (anim != null) {
Chet Haase199acdf2013-07-24 18:40:55 -07001257 AnimationInfo oldInfo = runningAnimators.get(anim);
Chet Haase58ad1222013-10-30 06:37:29 -07001258 if (oldInfo != null && oldInfo.view != null &&
1259 oldInfo.view.getContext() == sceneRoot.getContext()) {
Chet Haase199acdf2013-07-24 18:40:55 -07001260 boolean cancel = false;
1261 TransitionValues oldValues = oldInfo.values;
1262 View oldView = oldInfo.view;
1263 TransitionValues newValues = mEndValues.viewValues != null ?
1264 mEndValues.viewValues.get(oldView) : null;
Chet Haase23c61f62013-09-14 11:28:46 -07001265 if (newValues == null) {
1266 newValues = mEndValues.idValues.get(oldView.getId());
1267 }
Chet Haaseaf78bdd2013-08-27 16:06:26 -07001268 if (oldValues != null) {
1269 // if oldValues null, then transition didn't care to stash values,
1270 // and won't get canceled
Chet Haase23c61f62013-09-14 11:28:46 -07001271 if (newValues != null) {
Chet Haaseaf78bdd2013-08-27 16:06:26 -07001272 for (String key : oldValues.values.keySet()) {
1273 Object oldValue = oldValues.values.get(key);
1274 Object newValue = newValues.values.get(key);
1275 if (oldValue != null && newValue != null &&
1276 !oldValue.equals(newValue)) {
1277 cancel = true;
1278 if (DBG) {
1279 Log.d(LOG_TAG, "Transition.playTransition: " +
1280 "oldValue != newValue for " + key +
1281 ": old, new = " + oldValue + ", " + newValue);
1282 }
1283 break;
Chet Haase199acdf2013-07-24 18:40:55 -07001284 }
Chet Haase199acdf2013-07-24 18:40:55 -07001285 }
1286 }
1287 }
1288 if (cancel) {
1289 if (anim.isRunning() || anim.isStarted()) {
1290 if (DBG) {
1291 Log.d(LOG_TAG, "Canceling anim " + anim);
1292 }
1293 anim.cancel();
1294 } else {
1295 if (DBG) {
1296 Log.d(LOG_TAG, "removing anim from info list: " + anim);
1297 }
1298 runningAnimators.remove(anim);
1299 }
1300 }
1301 }
1302 }
1303 }
1304
Chet Haased82c8ac2013-08-26 14:20:16 -07001305 createAnimators(sceneRoot, mStartValues, mEndValues);
1306 runAnimators();
Chet Haasefaebd8f2012-05-18 14:17:57 -07001307 }
1308
1309 /**
1310 * This is a utility method used by subclasses to handle standard parts of
1311 * setting up and running an Animator: it sets the {@link #getDuration()
1312 * duration} and the {@link #getStartDelay() startDelay}, starts the
Chet Haase199acdf2013-07-24 18:40:55 -07001313 * animation, and, when the animator ends, calls {@link #end()}.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001314 *
1315 * @param animator The Animator to be run during this transition.
1316 *
1317 * @hide
1318 */
1319 protected void animate(Animator animator) {
1320 // TODO: maybe pass auto-end as a boolean parameter?
1321 if (animator == null) {
Chet Haase199acdf2013-07-24 18:40:55 -07001322 end();
Chet Haasefaebd8f2012-05-18 14:17:57 -07001323 } else {
1324 if (getDuration() >= 0) {
1325 animator.setDuration(getDuration());
1326 }
1327 if (getStartDelay() >= 0) {
1328 animator.setStartDelay(getStartDelay());
1329 }
1330 if (getInterpolator() != null) {
1331 animator.setInterpolator(getInterpolator());
1332 }
1333 animator.addListener(new AnimatorListenerAdapter() {
1334 @Override
Chet Haasefaebd8f2012-05-18 14:17:57 -07001335 public void onAnimationEnd(Animator animation) {
Chet Haase199acdf2013-07-24 18:40:55 -07001336 end();
Chet Haasefaebd8f2012-05-18 14:17:57 -07001337 animation.removeListener(this);
1338 }
1339 });
1340 animator.start();
1341 }
1342 }
1343
1344 /**
Chet Haasefaebd8f2012-05-18 14:17:57 -07001345 * This method is called automatically by the transition and
Chet Haased82c8ac2013-08-26 14:20:16 -07001346 * TransitionSet classes prior to a Transition subclass starting;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001347 * subclasses should not need to call it directly.
1348 *
1349 * @hide
1350 */
Chet Haase199acdf2013-07-24 18:40:55 -07001351 protected void start() {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001352 if (mNumInstances == 0) {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001353 if (mListeners != null && mListeners.size() > 0) {
1354 ArrayList<TransitionListener> tmpListeners =
1355 (ArrayList<TransitionListener>) mListeners.clone();
1356 int numListeners = tmpListeners.size();
1357 for (int i = 0; i < numListeners; ++i) {
1358 tmpListeners.get(i).onTransitionStart(this);
1359 }
1360 }
Chet Haasea56205c2013-09-10 11:30:22 -07001361 mEnded = false;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001362 }
1363 mNumInstances++;
1364 }
1365
1366 /**
1367 * This method is called automatically by the Transition and
Chet Haased82c8ac2013-08-26 14:20:16 -07001368 * TransitionSet classes when a transition finishes, either because
Chet Haasefaebd8f2012-05-18 14:17:57 -07001369 * a transition did nothing (returned a null Animator from
Chet Haased82c8ac2013-08-26 14:20:16 -07001370 * {@link Transition#createAnimator(ViewGroup, TransitionValues,
Chet Haasefaebd8f2012-05-18 14:17:57 -07001371 * TransitionValues)}) or because the transition returned a valid
Chet Haase199acdf2013-07-24 18:40:55 -07001372 * Animator and end() was called in the onAnimationEnd()
Chet Haasefaebd8f2012-05-18 14:17:57 -07001373 * callback of the AnimatorListener.
1374 *
1375 * @hide
1376 */
Chet Haase199acdf2013-07-24 18:40:55 -07001377 protected void end() {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001378 --mNumInstances;
1379 if (mNumInstances == 0) {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001380 if (mListeners != null && mListeners.size() > 0) {
1381 ArrayList<TransitionListener> tmpListeners =
1382 (ArrayList<TransitionListener>) mListeners.clone();
1383 int numListeners = tmpListeners.size();
1384 for (int i = 0; i < numListeners; ++i) {
1385 tmpListeners.get(i).onTransitionEnd(this);
1386 }
1387 }
Chet Haase6ebe3de2013-06-17 16:50:50 -07001388 for (int i = 0; i < mStartValues.itemIdValues.size(); ++i) {
1389 TransitionValues tv = mStartValues.itemIdValues.valueAt(i);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001390 View v = tv.view;
1391 if (v.hasTransientState()) {
1392 v.setHasTransientState(false);
1393 }
1394 }
Chet Haase6ebe3de2013-06-17 16:50:50 -07001395 for (int i = 0; i < mEndValues.itemIdValues.size(); ++i) {
1396 TransitionValues tv = mEndValues.itemIdValues.valueAt(i);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001397 View v = tv.view;
1398 if (v.hasTransientState()) {
1399 v.setHasTransientState(false);
1400 }
1401 }
Chet Haasea56205c2013-09-10 11:30:22 -07001402 mEnded = true;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001403 }
1404 }
1405
1406 /**
1407 * This method cancels a transition that is currently running.
Chet Haased82c8ac2013-08-26 14:20:16 -07001408 *
1409 * @hide
Chet Haasefaebd8f2012-05-18 14:17:57 -07001410 */
Chet Haase199acdf2013-07-24 18:40:55 -07001411 protected void cancel() {
Chet Haasee9d32ea2013-06-04 08:46:42 -07001412 int numAnimators = mCurrentAnimators.size();
Chet Haase25a738f2013-06-04 16:35:14 -07001413 for (int i = numAnimators - 1; i >= 0; i--) {
Chet Haasee9d32ea2013-06-04 08:46:42 -07001414 Animator animator = mCurrentAnimators.get(i);
1415 animator.cancel();
1416 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001417 if (mListeners != null && mListeners.size() > 0) {
1418 ArrayList<TransitionListener> tmpListeners =
1419 (ArrayList<TransitionListener>) mListeners.clone();
1420 int numListeners = tmpListeners.size();
1421 for (int i = 0; i < numListeners; ++i) {
1422 tmpListeners.get(i).onTransitionCancel(this);
1423 }
1424 }
1425 }
1426
1427 /**
1428 * Adds a listener to the set of listeners that are sent events through the
1429 * life of an animation, such as start, repeat, and end.
1430 *
1431 * @param listener the listener to be added to the current set of listeners
1432 * for this animation.
Chet Haased82c8ac2013-08-26 14:20:16 -07001433 * @return This transition object.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001434 */
Chet Haased82c8ac2013-08-26 14:20:16 -07001435 public Transition addListener(TransitionListener listener) {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001436 if (mListeners == null) {
1437 mListeners = new ArrayList<TransitionListener>();
1438 }
1439 mListeners.add(listener);
Chet Haased82c8ac2013-08-26 14:20:16 -07001440 return this;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001441 }
1442
1443 /**
1444 * Removes a listener from the set listening to this animation.
1445 *
1446 * @param listener the listener to be removed from the current set of
1447 * listeners for this transition.
Chet Haased82c8ac2013-08-26 14:20:16 -07001448 * @return This transition object.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001449 */
Chet Haased82c8ac2013-08-26 14:20:16 -07001450 public Transition removeListener(TransitionListener listener) {
Chet Haasefaebd8f2012-05-18 14:17:57 -07001451 if (mListeners == null) {
Chet Haased82c8ac2013-08-26 14:20:16 -07001452 return this;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001453 }
1454 mListeners.remove(listener);
1455 if (mListeners.size() == 0) {
1456 mListeners = null;
1457 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001458 return this;
Chet Haasefaebd8f2012-05-18 14:17:57 -07001459 }
1460
Chet Haased82c8ac2013-08-26 14:20:16 -07001461 Transition setSceneRoot(ViewGroup sceneRoot) {
Chet Haase6ebe3de2013-06-17 16:50:50 -07001462 mSceneRoot = sceneRoot;
Chet Haased82c8ac2013-08-26 14:20:16 -07001463 return this;
Chet Haase6ebe3de2013-06-17 16:50:50 -07001464 }
1465
Chet Haaseb7a7fc92013-09-20 16:33:08 -07001466 void setCanRemoveViews(boolean canRemoveViews) {
1467 mCanRemoveViews = canRemoveViews;
1468 }
1469
Chet Haasefaebd8f2012-05-18 14:17:57 -07001470 @Override
1471 public String toString() {
1472 return toString("");
1473 }
1474
Chet Haase6ebe3de2013-06-17 16:50:50 -07001475 @Override
1476 public Transition clone() {
1477 Transition clone = null;
1478 try {
1479 clone = (Transition) super.clone();
Chet Haase199acdf2013-07-24 18:40:55 -07001480 clone.mAnimators = new ArrayList<Animator>();
Chet Haase7660d122013-09-13 13:29:31 -07001481 clone.mStartValues = new TransitionValuesMaps();
1482 clone.mEndValues = new TransitionValuesMaps();
Chet Haase6ebe3de2013-06-17 16:50:50 -07001483 } catch (CloneNotSupportedException e) {}
1484
1485 return clone;
1486 }
1487
Chet Haase199acdf2013-07-24 18:40:55 -07001488 /**
1489 * Returns the name of this Transition. This name is used internally to distinguish
1490 * between different transitions to determine when interrupting transitions overlap.
Chet Haased82c8ac2013-08-26 14:20:16 -07001491 * For example, a ChangeBounds running on the same target view as another ChangeBounds
1492 * should determine whether the old transition is animating to different end values
1493 * and should be canceled in favor of the new transition.
Chet Haase199acdf2013-07-24 18:40:55 -07001494 *
1495 * <p>By default, a Transition's name is simply the value of {@link Class#getName()},
1496 * but subclasses are free to override and return something different.</p>
1497 *
1498 * @return The name of this transition.
1499 */
1500 public String getName() {
1501 return mName;
1502 }
1503
Chet Haasefaebd8f2012-05-18 14:17:57 -07001504 String toString(String indent) {
1505 String result = indent + getClass().getSimpleName() + "@" +
1506 Integer.toHexString(hashCode()) + ": ";
Chet Haasec43524f2013-07-16 14:40:11 -07001507 if (mDuration != -1) {
1508 result += "dur(" + mDuration + ") ";
Chet Haasefaebd8f2012-05-18 14:17:57 -07001509 }
Chet Haasec43524f2013-07-16 14:40:11 -07001510 if (mStartDelay != -1) {
1511 result += "dly(" + mStartDelay + ") ";
Chet Haasefaebd8f2012-05-18 14:17:57 -07001512 }
Chet Haasec43524f2013-07-16 14:40:11 -07001513 if (mInterpolator != null) {
1514 result += "interp(" + mInterpolator + ") ";
1515 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001516 if (mTargetIds.size() > 0 || mTargets.size() > 0) {
Chet Haasec43524f2013-07-16 14:40:11 -07001517 result += "tgts(";
Chet Haased82c8ac2013-08-26 14:20:16 -07001518 if (mTargetIds.size() > 0) {
1519 for (int i = 0; i < mTargetIds.size(); ++i) {
Chet Haasec43524f2013-07-16 14:40:11 -07001520 if (i > 0) {
1521 result += ", ";
1522 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001523 result += mTargetIds.get(i);
Chet Haasec43524f2013-07-16 14:40:11 -07001524 }
1525 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001526 if (mTargets.size() > 0) {
1527 for (int i = 0; i < mTargets.size(); ++i) {
Chet Haasec43524f2013-07-16 14:40:11 -07001528 if (i > 0) {
1529 result += ", ";
1530 }
Chet Haased82c8ac2013-08-26 14:20:16 -07001531 result += mTargets.get(i);
Chet Haasec43524f2013-07-16 14:40:11 -07001532 }
1533 }
1534 result += ")";
1535 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001536 return result;
1537 }
1538
1539 /**
1540 * A transition listener receives notifications from a transition.
Chet Haase199acdf2013-07-24 18:40:55 -07001541 * Notifications indicate transition lifecycle events.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001542 */
1543 public static interface TransitionListener {
1544 /**
1545 * Notification about the start of the transition.
1546 *
1547 * @param transition The started transition.
1548 */
1549 void onTransitionStart(Transition transition);
1550
1551 /**
1552 * Notification about the end of the transition. Canceled transitions
1553 * will always notify listeners of both the cancellation and end
Chet Haase199acdf2013-07-24 18:40:55 -07001554 * events. That is, {@link #onTransitionEnd(Transition)} is always called,
Chet Haasefaebd8f2012-05-18 14:17:57 -07001555 * regardless of whether the transition was canceled or played
1556 * through to completion.
1557 *
1558 * @param transition The transition which reached its end.
1559 */
1560 void onTransitionEnd(Transition transition);
1561
1562 /**
1563 * Notification about the cancellation of the transition.
Chet Haased82c8ac2013-08-26 14:20:16 -07001564 * Note that cancel may be called by a parent {@link TransitionSet} on
Chet Haase199acdf2013-07-24 18:40:55 -07001565 * a child transition which has not yet started. This allows the child
1566 * transition to restore state on target objects which was set at
Chet Haased82c8ac2013-08-26 14:20:16 -07001567 * {@link #createAnimator(android.view.ViewGroup, TransitionValues, TransitionValues)
1568 * createAnimator()} time.
Chet Haasefaebd8f2012-05-18 14:17:57 -07001569 *
1570 * @param transition The transition which was canceled.
1571 */
1572 void onTransitionCancel(Transition transition);
Chet Haase199acdf2013-07-24 18:40:55 -07001573
1574 /**
1575 * Notification when a transition is paused.
Chet Haased82c8ac2013-08-26 14:20:16 -07001576 * Note that createAnimator() may be called by a parent {@link TransitionSet} on
Chet Haase199acdf2013-07-24 18:40:55 -07001577 * a child transition which has not yet started. This allows the child
1578 * transition to restore state on target objects which was set at
Chet Haased82c8ac2013-08-26 14:20:16 -07001579 * {@link #createAnimator(android.view.ViewGroup, TransitionValues, TransitionValues)
1580 * createAnimator()} time.
Chet Haase199acdf2013-07-24 18:40:55 -07001581 *
1582 * @param transition The transition which was paused.
1583 */
1584 void onTransitionPause(Transition transition);
1585
1586 /**
1587 * Notification when a transition is resumed.
Chet Haased82c8ac2013-08-26 14:20:16 -07001588 * Note that resume() may be called by a parent {@link TransitionSet} on
Chet Haase199acdf2013-07-24 18:40:55 -07001589 * a child transition which has not yet started. This allows the child
1590 * transition to restore state which may have changed in an earlier call
1591 * to {@link #onTransitionPause(Transition)}.
1592 *
1593 * @param transition The transition which was resumed.
1594 */
1595 void onTransitionResume(Transition transition);
Chet Haasefaebd8f2012-05-18 14:17:57 -07001596 }
1597
1598 /**
1599 * Utility adapter class to avoid having to override all three methods
1600 * whenever someone just wants to listen for a single event.
1601 *
1602 * @hide
1603 * */
1604 public static class TransitionListenerAdapter implements TransitionListener {
1605 @Override
1606 public void onTransitionStart(Transition transition) {
1607 }
1608
1609 @Override
1610 public void onTransitionEnd(Transition transition) {
1611 }
1612
1613 @Override
1614 public void onTransitionCancel(Transition transition) {
1615 }
Chet Haase199acdf2013-07-24 18:40:55 -07001616
1617 @Override
1618 public void onTransitionPause(Transition transition) {
1619 }
1620
1621 @Override
1622 public void onTransitionResume(Transition transition) {
1623 }
Chet Haasefaebd8f2012-05-18 14:17:57 -07001624 }
1625
Chet Haase199acdf2013-07-24 18:40:55 -07001626 /**
1627 * Holds information about each animator used when a new transition starts
1628 * while other transitions are still running to determine whether a running
1629 * animation should be canceled or a new animation noop'd. The structure holds
1630 * information about the state that an animation is going to, to be compared to
1631 * end state of a new animation.
1632 */
1633 private static class AnimationInfo {
1634 View view;
1635 String name;
1636 TransitionValues values;
1637
1638 AnimationInfo(View view, String name, TransitionValues values) {
1639 this.view = view;
1640 this.name = name;
1641 this.values = values;
1642 }
1643 }
Chet Haaseff58f922013-09-11 13:08:18 -07001644
1645 /**
1646 * Utility class for managing typed ArrayLists efficiently. In particular, this
1647 * can be useful for lists that we don't expect to be used often (eg, the exclude
1648 * lists), so we'd like to keep them nulled out by default. This causes the code to
1649 * become tedious, with constant null checks, code to allocate when necessary,
1650 * and code to null out the reference when the list is empty. This class encapsulates
1651 * all of that functionality into simple add()/remove() methods which perform the
1652 * necessary checks, allocation/null-out as appropriate, and return the
1653 * resulting list.
1654 */
1655 private static class ArrayListManager {
1656
1657 /**
1658 * Add the specified item to the list, returning the resulting list.
1659 * The returned list can either the be same list passed in or, if that
1660 * list was null, the new list that was created.
1661 *
1662 * Note that the list holds unique items; if the item already exists in the
1663 * list, the list is not modified.
1664 */
1665 static <T> ArrayList<T> add(ArrayList<T> list, T item) {
1666 if (list == null) {
1667 list = new ArrayList<T>();
1668 }
1669 if (!list.contains(item)) {
1670 list.add(item);
1671 }
1672 return list;
1673 }
1674
1675 /**
1676 * Remove the specified item from the list, returning the resulting list.
1677 * The returned list can either the be same list passed in or, if that
1678 * list becomes empty as a result of the remove(), the new list was created.
1679 */
1680 static <T> ArrayList<T> remove(ArrayList<T> list, T item) {
1681 if (list != null) {
1682 list.remove(item);
1683 if (list.isEmpty()) {
1684 list = null;
1685 }
1686 }
1687 return list;
1688 }
1689 }
1690
Chet Haasefaebd8f2012-05-18 14:17:57 -07001691}