Home
last modified time | relevance | path

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

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
DFrameworkActionBar.java69 FrameLayout contentRoot = decorContent.findViewById(android.R.id.content); in FrameworkActionBar() local
73 if (contentRoot == null) { in FrameworkActionBar()
74 contentRoot = new FrameLayout(context); in FrameworkActionBar()
75 setMatchParent(contentRoot); in FrameworkActionBar()
77 mEnclosingLayout.addView(contentRoot); in FrameworkActionBar()
79 setContentRoot(contentRoot); in FrameworkActionBar()
81 setContentRoot(contentRoot); in FrameworkActionBar()
DAppCompatActionBar.java89 FrameLayout contentRoot = new FrameLayout(context); in AppCompatActionBar() local
90 setMatchParent(contentRoot); in AppCompatActionBar()
92 mEnclosingLayout.addView(contentRoot); in AppCompatActionBar()
94 contentRoot.setId(id.content); in AppCompatActionBar()
95 setContentRoot(contentRoot); in AppCompatActionBar()
DBridgeActionBar.java98 protected void setContentRoot(@NonNull FrameLayout contentRoot) { in setContentRoot() argument
99 mContentRoot = contentRoot; in setContentRoot()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DLayout.java288 FrameLayout contentRoot = new FrameLayout(getContext()); in createContentFrame() local
310 contentRoot.setLayoutParams(params); in createContentFrame()
311 contentRoot.setId(id.content); in createContentFrame()
312 return contentRoot; in createContentFrame()