Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DScreenDecorations.java796 private ValueAnimator mCameraProtectionAnimator; field in ScreenDecorations.DisplayCutoutView
894 if (mCameraProtectionAnimator != null) { in setShowProtection()
895 mCameraProtectionAnimator.cancel(); in setShowProtection()
897 mCameraProtectionAnimator = ValueAnimator.ofFloat(mCameraProtectionProgress, in setShowProtection()
899 mCameraProtectionAnimator.setInterpolator(Interpolators.DECELERATE_QUINT); in setShowProtection()
900 mCameraProtectionAnimator.addUpdateListener(animation -> { in setShowProtection()
904 mCameraProtectionAnimator.addListener(new AnimatorListenerAdapter() { in setShowProtection()
907 mCameraProtectionAnimator = null; in setShowProtection()
913 mCameraProtectionAnimator.start(); in setShowProtection()