Home
last modified time | relevance | path

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

/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DFrameworkActionBar.java69 FrameLayout contentRoot = (FrameLayout) 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()
H A 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()
H A DBridgeActionBar.java97 protected void setContentRoot(@NonNull FrameLayout contentRoot) { in setContentRoot() argument
98 mContentRoot = contentRoot; in setContentRoot()
/aosp12/packages/apps/Settings/src/com/android/settings/print/
H A DPrintServiceSettingsFragment.java173 ViewGroup contentRoot = (ViewGroup) getListView().getParent(); in updateEmptyView() local
177 contentRoot.removeView(emptyView); in updateEmptyView()
182 R.layout.empty_print_state, contentRoot, false); in updateEmptyView()
185 contentRoot.addView(emptyView); in updateEmptyView()
190 contentRoot.removeView(emptyView); in updateEmptyView()
195 R.layout.empty_printers_list_service_enabled, contentRoot, false); in updateEmptyView()
196 contentRoot.addView(emptyView); in updateEmptyView()
201 contentRoot.removeView(emptyView); in updateEmptyView()
206 R.layout.empty_print_state, contentRoot, false); in updateEmptyView()
209 contentRoot.addView(emptyView); in updateEmptyView()
[all …]
H A DPrintSettingsFragment.java137 ViewGroup contentRoot = (ViewGroup) getListView().getParent(); in onViewCreated() local
139 R.layout.empty_print_state, contentRoot, false); in onViewCreated()
151 contentRoot.addView(emptyView); in onViewCreated()
/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayout.java210 FrameLayout contentRoot = new FrameLayout(getContext()); in createContentFrame() local
227 contentRoot.setLayoutParams(params); in createContentFrame()
228 contentRoot.setId(id.content); in createContentFrame()
229 return contentRoot; in createContentFrame()