Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationPanelView.java391 mKeyguardBottomArea.setStatusBar(mStatusBar); in setStatusBar()
410 mKeyguardBottomArea = findViewById(R.id.keyguard_bottom_area); in onFinishInflate()
534 index = indexOfChild(mKeyguardBottomArea); in reInflateViews()
535 removeView(mKeyguardBottomArea); in reInflateViews()
536 KeyguardBottomAreaView oldBottomArea = mKeyguardBottomArea; in reInflateViews()
537 mKeyguardBottomArea = (KeyguardBottomAreaView) mInjectionInflationController in reInflateViews()
542 mKeyguardBottomArea.initFrom(oldBottomArea); in reInflateViews()
543 addView(mKeyguardBottomArea, index); in reInflateViews()
545 mKeyguardIndicationController.setIndicationArea(mKeyguardBottomArea); in reInflateViews()
559 mKeyguardBottomArea.setAffordanceHelper(mAffordanceHelper); in initBottomArea()
[all …]
DPanelView.java135 protected KeyguardBottomAreaView mKeyguardBottomArea; field in PanelView
1118 mKeyguardBottomArea.getIndicationArea(), in startUnlockHintAnimationPhase1()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationPanelViewTest.java77 private KeyguardBottomAreaView mKeyguardBottomArea; field in NotificationPanelViewTest
123 when(mKeyguardBottomArea.getLeftView()).thenReturn(mock(KeyguardAffordanceView.class)); in setup()
124 when(mKeyguardBottomArea.getRightView()).thenReturn(mock(KeyguardAffordanceView.class)); in setup()
189 mKeyguardBottomArea = NotificationPanelViewTest.this.mKeyguardBottomArea; in TestableNotificationPanelView()