Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogImpl.java253 private final ValueAnimator mAnimateUpBackgroundToMatchDrawer = ValueAnimator.ofFloat(1f, 0f); field in VolumeDialogImpl
1024 mAnimateUpBackgroundToMatchDrawer.addUpdateListener(valueAnimator -> { in setupRingerDrawer()
1128 mAnimateUpBackgroundToMatchDrawer.setDuration(ringerDrawerAnimationDuration); in showRingerDrawer()
1129 mAnimateUpBackgroundToMatchDrawer.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); in showRingerDrawer()
1130 mAnimateUpBackgroundToMatchDrawer.start(); in showRingerDrawer()
1181 mAnimateUpBackgroundToMatchDrawer.setDuration(DRAWER_ANIMATION_DURATION); in hideRingerDrawer()
1182 mAnimateUpBackgroundToMatchDrawer.setInterpolator(Interpolators.FAST_OUT_SLOW_IN_REVERSE); in hideRingerDrawer()
1183 mAnimateUpBackgroundToMatchDrawer.reverse(); in hideRingerDrawer()