Home | History | Annotate | Download | only in transition

Lines Matching defs:sceneRoot

47      * the given <code>sceneRoot</code>, that same Scene will be returned.
52 * @param sceneRoot The root of the hierarchy in which scene changes
60 public static Scene getSceneForLayout(@NonNull ViewGroup sceneRoot, @LayoutRes int layoutId,
64 (SparseArray<Scene>) sceneRoot.getTag(R.id.transition_scene_layoutid_cache);
67 sceneRoot.setTag(R.id.transition_scene_layoutid_cache, scenes);
73 scene = new Scene(sceneRoot, layoutId, context);
86 * @param sceneRoot The root of the hierarchy in which scene changes
89 public Scene(@NonNull ViewGroup sceneRoot) {
90 mSceneRoot = sceneRoot;
95 * children from the sceneRoot container and will inflate and add
101 * @param sceneRoot The root of the hierarchy in which scene changes
108 private Scene(ViewGroup sceneRoot, int layoutId, Context context) {
110 mSceneRoot = sceneRoot;
116 * children from the sceneRoot container and add the layout
119 * @param sceneRoot The root of the hierarchy in which scene changes
122 * of sceneRoot when this scene is entered.
124 public Scene(@NonNull ViewGroup sceneRoot, @NonNull View layout) {
125 mSceneRoot = sceneRoot;