Home
last modified time | relevance | path

Searched refs:baseLayout (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/libs/car-ui-lib/referencedesign/sharedlibrary/src/main/java/com/chassis/car/ui/sharedlibrary/toolbar/
DBaseLayoutInstaller.java69 FrameLayout baseLayout = (FrameLayout) LayoutInflater.from(sharedLibraryContext).inflate( in installBaseLayoutAround() local
76 contentViewParent.addView(baseLayout, contentIndex, contentView.getLayoutParams()); in installBaseLayoutAround()
79 FrameLayout contentViewContainer = baseLayout.requireViewById( in installBaseLayoutAround()
91 baseLayout.addView(focusParkingView, 0, in installBaseLayoutAround()
108 View toolbar = baseLayout.requireViewById(R.id.toolbar_background); in installBaseLayoutAround()
109 int toolbarIndex = baseLayout.indexOfChild(toolbar); in installBaseLayoutAround()
110 baseLayout.removeView(toolbar); in installBaseLayoutAround()
111 baseLayout.addView(focusArea, toolbarIndex, toolbar.getLayoutParams()); in installBaseLayoutAround()
121 baseLayout, sharedLibraryContext, activityContext); in installBaseLayoutAround()
124 InsetsUpdater updater = new InsetsUpdater(baseLayout, contentView); in installBaseLayoutAround()
[all …]
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/sharedlibrarysupport/
DSharedLibraryFactoryStub.java89 View baseLayout = LayoutInflater.from(contentView.getContext()) in installBaseLayoutAround() local
96 contentViewParent.addView(baseLayout, contentIndex, contentView.getLayoutParams()); in installBaseLayoutAround()
99 FrameLayout contentViewContainer = requireViewByRefId(baseLayout, in installBaseLayoutAround()
109 requireViewByRefId(baseLayout, R.id.car_ui_toolbar)); in installBaseLayoutAround()
111 toolbarController = new ToolbarControllerImpl(baseLayout); in installBaseLayoutAround()
115 InsetsUpdater insetsUpdater = new InsetsUpdater(baseLayout, contentView); in installBaseLayoutAround()
170 @NonNull View baseLayout, in InsetsUpdater()
173 mContentViewContainer = requireViewByRefId(baseLayout, in InsetsUpdater()
176 mLeftInsetView = baseLayout.findViewWithTag(LEFT_INSET_TAG); in InsetsUpdater()
177 mRightInsetView = baseLayout.findViewWithTag(RIGHT_INSET_TAG); in InsetsUpdater()
[all …]
/packages/apps/Car/SystemUI/src/com/android/systemui/car/window/
DOverlayViewController.java71 public final void inflate(ViewGroup baseLayout) { in inflate() argument
72 ViewStub viewStub = baseLayout.findViewById(mStubId); in inflate()