Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java46 private ValueAnimator mViewTransformationAnimation; field in ViewTransformationHelper
105 if (mViewTransformationAnimation != null) { in transformTo()
106 mViewTransformationAnimation.cancel(); in transformTo()
108 mViewTransformationAnimation = ValueAnimator.ofFloat(0.0f, 1.0f); in transformTo()
109 mViewTransformationAnimation.addUpdateListener( in transformTo()
111 mViewTransformationAnimation.setInterpolator(Interpolators.LINEAR); in transformTo()
112 mViewTransformationAnimation.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD); in transformTo()
113 mViewTransformationAnimation.addListener(new AnimatorListenerAdapter() { in transformTo()
123 mViewTransformationAnimation = null; in transformTo()
134 mViewTransformationAnimation.start(); in transformTo()
[all …]