Home
last modified time | relevance | path

Searched refs:customView (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/smartspace/
H A DDreamSmartspaceControllerTest.kt212 val customView = Mockito.mock(TestView::class.java) regex
213 val weatherView = controller.buildAndConnectWeatherView(fakeParent, customView)
220 eq(customView))
235 val customView = Mockito.mock(TestView::class.java) regex
240 checkNotNull(controller.buildAndConnectWeatherView(fakeParent, customView))
261 val customView = Mockito.mock(TestView::class.java) regex
263 checkNotNull(controller.buildAndConnectWeatherView(fakeParent, customView))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/smartspace/
H A DDreamSmartspaceController.kt134 fun buildAndConnectWeatherView(parent: ViewGroup, customView: View?): View? {
135 return buildAndConnectViewWithPlugin(parent, weatherPlugin, customView)
148 customView: View?
156 val view = buildView(parent, smartspaceDataPlugin, customView)
166 customView: View?
170 stateChangeListener, customView)
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteControllerDialog.java155 View customView = getLayoutInflater().inflate(R.layout.media_route_controller_dialog, null); in onCreate() local
156 setView(customView, 0, 0, 0, 0); in onCreate()
163 mVolumeLayout = (LinearLayout) customView.findViewById(R.id.media_route_volume_layout); in onCreate()
164 mVolumeSlider = (SeekBar) customView.findViewById(R.id.media_route_volume_slider); in onCreate()
206 (FrameLayout) customView.findViewById(R.id.media_route_control_frame); in onCreate()
H A DAlertController.java657 final View customView; in setupCustomContent() local
659 customView = mView; in setupCustomContent()
662 customView = inflater.inflate(mViewLayoutResId, customPanel, false); in setupCustomContent()
664 customView = null; in setupCustomContent()
667 final boolean hasCustomView = customView != null; in setupCustomContent()
668 if (!hasCustomView || !canTextInput(customView)) { in setupCustomContent()
675 custom.addView(customView, new LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setupCustomContent()
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/
H A DAlertController.java464 final View customView; in setupCustomContent() local
466 customView = mView; in setupCustomContent()
469 customView = inflater.inflate(mViewLayoutResId, customPanel, false); in setupCustomContent()
471 customView = null; in setupCustomContent()
474 final boolean hasCustomView = customView != null; in setupCustomContent()
475 if (!hasCustomView || !canTextInput(customView)) { in setupCustomContent()
482 custom.addView(customView, new LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setupCustomContent()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java1006 View customView = null; in onMeasure() local
1008 customView = mExpandedActionView; in onMeasure()
1011 customView = mCustomNavView; in onMeasure()
1014 if (customView != null) { in onMeasure()
1052 customView.measure( in onMeasure()
1161 View customView = null; in onLayout() local
1163 customView = mExpandedActionView; in onLayout()
1166 customView = mCustomNavView; in onLayout()
1168 if (customView != null) { in onLayout()
1245 customView.layout(xpos, ypos, xpos + customWidth, in onLayout()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRow.java689 boolean customView = contractedView != null in updateLimitsForView()
699 if (customView && beforeS && !mIsSummaryWithChildren) { in updateLimitsForView()