Searched refs:customView (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/smartspace/ |
D | DreamSmartspaceControllerTest.kt | 212 val customView = Mockito.mock(TestView::class.java) in testConnectOnWeatherViewCreate() constant 213 val weatherView = controller.buildAndConnectWeatherView(fakeParent, customView) in testConnectOnWeatherViewCreate() 220 eq(customView)) in testConnectOnWeatherViewCreate() 235 val customView = Mockito.mock(TestView::class.java) in testAddListenerInController_registersListenerForWeatherPlugin() constant 239 val weatherView = controller.buildAndConnectWeatherView(fakeParent, customView) in testAddListenerInController_registersListenerForWeatherPlugin() 260 val customView = Mockito.mock(TestView::class.java) in testDisconnect_emitsEmptyListAndRemovesNotifier() constant 261 val weatherView = controller.buildAndConnectWeatherView(fakeParent, customView) in testDisconnect_emitsEmptyListAndRemovesNotifier()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/smartspace/ |
D | DreamSmartspaceController.kt | 134 fun buildAndConnectWeatherView(parent: ViewGroup, customView: View?): View? { in <lambda>() 135 return buildAndConnectViewWithPlugin(parent, weatherPlugin, customView) in <lambda>() 148 customView: View? in <lambda>() 156 val view = buildView(parent, smartspaceDataPlugin, customView) in <lambda>() 166 customView: View? in <lambda>() 170 stateChangeListener, customView) in <lambda>()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | MediaRouteControllerDialog.java | 155 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()
|
D | AlertController.java | 657 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()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarView.java | 1006 View customView = null; in onMeasure() local 1008 customView = mExpandedActionView; in onMeasure() 1011 customView = mCustomNavView; in onMeasure() 1014 if (customView != null) { in onMeasure() 1015 final ViewGroup.LayoutParams lp = generateLayoutParams(customView.getLayoutParams()); in onMeasure() 1052 customView.measure( in onMeasure() 1055 availableWidth -= horizontalMargin + customView.getMeasuredWidth(); in onMeasure() 1161 View customView = null; in onLayout() local 1163 customView = mExpandedActionView; in onLayout() 1166 customView = mCustomNavView; in onLayout() [all …]
|
/frameworks/layoutlib/bridge/src/android/view/ |
D | BridgeInflater.java | 415 Object customView = silent ? in loadCustomView() local 419 if (customView instanceof View) { in loadCustomView() 420 return (View)customView; in loadCustomView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 700 boolean customView = contractedView != null in updateLimitsForView() 710 if (customView && beforeS && !mIsSummaryWithChildren) { in updateLimitsForView()
|