Lines Matching refs:scene
88 scene. This procedure is described in detail in the remaining lessons in this class.</p>
94 <p>A scene stores the state of a view hierarchy, including all its views and their property
96 Storing the view hierarchy state in a scene enables you to transition into that state from
97 another scene. The framework provides the {@link android.transition.Scene} class to represent
98 a scene.</p>
101 {@link android.view.ViewGroup} objects in your code. Creating a scene in your code is useful
104 <p>In most cases, you do not create a starting scene explicitly. If you have applied a
105 transition, the framework uses the previous ending scene as the starting scene for any
109 <p>A scene can also define its own actions that run when you make a scene change. For example,
110 this feature is useful for cleaning up view settings after you transition to a scene.</p>
112 <p>In addition to the view hierarchy and its property values, a scene also stores a reference
113 to the parent of the view hierarchy. This root view is called a <strong>scene root</strong>.
114 Changes to the scene and animations that affect the scene occur within the scene root.</p>
128 scene.</p>