Home
last modified time | relevance | path

Searched refs:contentRoot (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
DFrameworkActionBar.java71 FrameLayout contentRoot = (FrameLayout) decorContent.findViewById(android.R.id.content); in FrameworkActionBar() local
75 if (contentRoot == null) { in FrameworkActionBar()
76 contentRoot = new FrameLayout(context); in FrameworkActionBar()
77 setMatchParent(contentRoot); in FrameworkActionBar()
79 mEnclosingLayout.addView(contentRoot); in FrameworkActionBar()
81 setContentRoot(contentRoot); in FrameworkActionBar()
83 setContentRoot(contentRoot); in FrameworkActionBar()
DAppCompatActionBar.java68 FrameLayout contentRoot = new FrameLayout(context); in AppCompatActionBar() local
69 setMatchParent(contentRoot); in AppCompatActionBar()
71 mEnclosingLayout.addView(contentRoot); in AppCompatActionBar()
73 setContentRoot(contentRoot); in AppCompatActionBar()
DBridgeActionBar.java98 protected void setContentRoot(@NonNull FrameLayout contentRoot) { in setContentRoot() argument
99 mContentRoot = contentRoot; in setContentRoot()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DLayout.java168 FrameLayout contentRoot = new FrameLayout(getContext()); in createContentFrame() local
183 contentRoot.setLayoutParams(params); in createContentFrame()
184 return contentRoot; in createContentFrame()