Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ui/
DScreenshotAnimationController.kt80 val flashInAnimator = in <lambda>() constant
90 flashInAnimator.doOnStart { flashView.visibility = View.VISIBLE } in <lambda>()
92 entranceAnimation.play(flashOutAnimator).after(flashInAnimator) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DScreenshotView.java511 ValueAnimator flashInAnimator = ValueAnimator.ofFloat(0, 1); in createScreenshotDropInAnimation() local
512 flashInAnimator.setDuration(SCREENSHOT_FLASH_IN_DURATION_MS); in createScreenshotDropInAnimation()
513 flashInAnimator.setInterpolator(mFastOutSlowIn); in createScreenshotDropInAnimation()
514 flashInAnimator.addUpdateListener(animation -> in createScreenshotDropInAnimation()
609 dropInAnimation.play(flashOutAnimator).after(flashInAnimator); in createScreenshotDropInAnimation()