Searched defs:Scene (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DScene.java27 * View hierarchy will have when the scene is applied. A Scene can be
32 public final class Scene { class
39 private static ThreadLocal<SparseArray<Scene>> sScenes = new ThreadLocal<SparseArray<Scene>>();
42 * Returns a Scene described by the resource file associated with the given
43 * <code>layoutId</code> parameter. If such a Scene has already been created,
44 * that same Scene will be returned. This caching of layoutId-based scenes enables
55 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) {
56 SparseArray<Scene> scenes = sScenes.get();
58 scenes = new SparseArray<Scene>();
81 public Scene(ViewGroup sceneRoot) { method in class:Scene
100 private Scene(ViewGroup sceneRoot, int layoutId, Context context) { method in class:Scene
116 public Scene(ViewGroup sceneRoot, ViewGroup layout) { method in class:Scene
[all...]
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DScene.java42 public class Scene extends SceneGraphBase { class in inherits:SceneGraphBase
66 public Scene() { method in class:Scene

Completed in 90 milliseconds