Home
last modified time | relevance | path

Searched refs:mBottomAreaShadeAlphaAnimator (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DNotificationPanelViewController.java480 final ValueAnimator mBottomAreaShadeAlphaAnimator; field in NotificationPanelViewController
909 mBottomAreaShadeAlphaAnimator = ValueAnimator.ofFloat(1f, 0); in NotificationPanelViewController()
910 mBottomAreaShadeAlphaAnimator.addUpdateListener(animation -> { in NotificationPanelViewController()
914 mBottomAreaShadeAlphaAnimator.setDuration(160); in NotificationPanelViewController()
915 mBottomAreaShadeAlphaAnimator.setInterpolator(Interpolators.ALPHA_OUT); in NotificationPanelViewController()
2289 mBottomAreaShadeAlphaAnimator.cancel(); in maybeAnimateBottomAreaAlpha()
2291 mBottomAreaShadeAlphaAnimator.setFloatValues(mBottomAreaShadeAlpha, 0.0f); in maybeAnimateBottomAreaAlpha()
2292 mBottomAreaShadeAlphaAnimator.start(); in maybeAnimateBottomAreaAlpha()
3138 mBottomAreaShadeAlphaAnimator.cancel(); in setDozing()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
H A DNotificationPanelViewControllerBaseTest.java735 mNotificationPanelViewController.mBottomAreaShadeAlphaAnimator.cancel(); in tearDown()