Home | History | Annotate | Download | only in transition

Lines Matching defs:sceneRoot

43      * the given <code>sceneRoot</code>, that same Scene will be returned.
48 * @param sceneRoot The root of the hierarchy in which scene changes
55 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) {
56 SparseArray<Scene> scenes = (SparseArray<Scene>) sceneRoot.getTag(
60 sceneRoot.setTagInternal(com.android.internal.R.id.scene_layoutid_cache, scenes);
66 scene = new Scene(sceneRoot, layoutId, context);
79 * @param sceneRoot The root of the hierarchy in which scene changes
82 public Scene(ViewGroup sceneRoot) {
83 mSceneRoot = sceneRoot;
88 * children from the sceneRoot container and will inflate and add
94 * @param sceneRoot The root of the hierarchy in which scene changes
101 private Scene(ViewGroup sceneRoot, int layoutId, Context context) {
103 mSceneRoot = sceneRoot;
109 * children from the sceneRoot container and add the layout
112 * @param sceneRoot The root of the hierarchy in which scene changes
115 * of sceneRoot when this scene is entered.
117 public Scene(ViewGroup sceneRoot, View layout) {
118 mSceneRoot = sceneRoot;
126 public Scene(ViewGroup sceneRoot, ViewGroup layout) {
127 mSceneRoot = sceneRoot;