Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java485 final ValueAnimator mBottomAreaShadeAlphaAnimator; field in NotificationPanelViewController
928 mBottomAreaShadeAlphaAnimator = ValueAnimator.ofFloat(1f, 0); in NotificationPanelViewController()
929 mBottomAreaShadeAlphaAnimator.addUpdateListener(animation -> { in NotificationPanelViewController()
933 mBottomAreaShadeAlphaAnimator.setDuration(160); in NotificationPanelViewController()
934 mBottomAreaShadeAlphaAnimator.setInterpolator(Interpolators.ALPHA_OUT); in NotificationPanelViewController()
2428 mBottomAreaShadeAlphaAnimator.cancel(); in maybeAnimateBottomAreaAlpha()
2430 mBottomAreaShadeAlphaAnimator.setFloatValues(mBottomAreaShadeAlpha, 0.0f); in maybeAnimateBottomAreaAlpha()
2431 mBottomAreaShadeAlphaAnimator.start(); in maybeAnimateBottomAreaAlpha()
3261 mBottomAreaShadeAlphaAnimator.cancel();
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationPanelViewControllerBaseTest.java849 mNotificationPanelViewController.mBottomAreaShadeAlphaAnimator.cancel(); in tearDown()