Home | History | Annotate | Download | only in transition

Lines Matching defs:transitions

34  * This class manages the set of transitions that fire when there is a
38 * transitions for scene changes is not required; by default, a Scene change
40 * situations. Specifying other transitions for particular scene changes is
50 * transitions:</p>
197 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = runningTransitions.get();
198 if (transitions != null) {
199 return transitions;
202 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = new ArrayMap<>();
203 runningTransitions = new WeakReference<>(transitions);
205 return transitions;
418 * Ends all pending and ongoing transitions on the specified scene root.
420 * @param sceneRoot The root of the View hierarchy to end transitions on.