Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthPanelController.java51 private final View mPanelView; field in AuthPanelController
181 mPanelView.invalidateOutline(); in updateForContentDimensions()
202 mPanelView.invalidateOutline(); in updateForContentDimensions()
216 mPanelView = panelView; in AuthPanelController()
221 mPanelView.setOutlineProvider(this); in AuthPanelController()
222 mPanelView.setClipToOutline(true); in AuthPanelController()
DAuthContainerView.java166 private final View mPanelView; field in AuthContainerView
402 mPanelView = mLayout.findViewById(R.id.panel); in AuthContainerView()
406 mPanelView.setBackgroundColor(ta.getColor(0, Color.WHITE)); in AuthContainerView()
409 mPanelController = new AuthPanelController(mContext, mPanelView); in AuthContainerView()
703 mPanelView.invalidateOutline();
735 mPanelView.invalidateOutline();
775 mPanelView.animate().cancel();
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DQuickSettingsControllerImplBaseTest.java125 @Mock protected NotificationPanelView mPanelView; field in QuickSettingsControllerImplBaseTest
247 when(mPanelView.getResources()).thenReturn(mResources); in setup()
248 when(mPanelView.getContext()).thenReturn(getContext()); in setup()
249 when(mPanelView.findViewById(R.id.keyguard_header)).thenReturn(mKeyguardStatusBar); in setup()
251 when(mPanelView.findViewById(R.id.qs_frame)).thenReturn(mQsFrame); in setup()
256 when(mPanelView.getY()).thenReturn((float) QS_FRAME_TOP); in setup()
257 when(mPanelView.getHeight()).thenReturn(QS_FRAME_BOTTOM); in setup()
258 when(mPanelView.findViewById(R.id.keyguard_status_view)) in setup()
260 when(mQs.getView()).thenReturn(mPanelView); in setup()
261 when(mQSFragment.getView()).thenReturn(mPanelView); in setup()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DQuickSettingsControllerImpl.java129 private final NotificationPanelView mPanelView; field in QuickSettingsControllerImpl
344 mPanelView = panelView; in QuickSettingsControllerImpl()
346 mQsFrame = mPanelView.findViewById(R.id.qs_frame); in QuickSettingsControllerImpl()
347 mKeyguardStatusBar = mPanelView.findViewById(R.id.keyguard_header); in QuickSettingsControllerImpl()
348 mResources = mPanelView.getResources(); in QuickSettingsControllerImpl()
418 final ViewConfiguration configuration = ViewConfiguration.get(this.mPanelView.getContext()); in loadDimens()
421 mStatusBarMinHeight = SystemBarUtils.getStatusBarHeight(mPanelView.getContext()); in loadDimens()
425 mPanelView.getContext()); in loadDimens()
443 LargeScreenUtils.shouldUseLargeScreenShadeHeader(mPanelView.getResources()); in updateResources()
505 && mPanelView.getRootWindowInsets().isVisible(ime()); in isRemoteInputActiveWithKeyboardUp()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSImpl.java98 private HeightListener mPanelView; field in QSImpl
367 mPanelView = panelView; in setPanelView()
886 if (mPanelView != null) { in notifyCustomizeChanged()
887 mPanelView.onQsHeightChanged(); in notifyCustomizeChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
DWindowMagnificationSettings.java95 private LinearLayout mPanelView; field in WindowMagnificationSettings
520 mPanelView = mSettingView.findViewById(R.id.magnifier_panel_view); in inflateView()