Searched refs:toScene (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java327 Scene toScene = (toId < 0) ? null : Scene.getSceneForLayout(sceneRoot, toId, mContext);
332 if (toScene == null) {
333 throw new RuntimeException("No toScene for transition ID " + transitionId);
336 transitionManager.setTransition(toScene, transition);
338 transitionManager.setTransition(fromScene, toScene, transition);
H A DTransitionManager.java50 * <p>For each of the <code>fromScene</code> and <code>toScene</code> attributes,
126 * @param toScene The scene being entered when the given transition will
132 public void setTransition(Scene fromScene, Scene toScene, Transition transition) { argument
133 ArrayMap<Scene, Transition> sceneTransitionMap = mScenePairTransitions.get(toScene);
136 mScenePairTransitions.put(toScene, sceneTransitionMap);

Completed in 68 milliseconds