Searched defs:mViewTransformationAnimation (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DViewTransformationHelper.java43 private ValueAnimator mViewTransformationAnimation; field in class:ViewTransformationHelper
68 if (mViewTransformationAnimation != null) {
69 mViewTransformationAnimation.cancel();
71 mViewTransformationAnimation = ValueAnimator.ofFloat(0.0f, 1.0f);
72 mViewTransformationAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
78 mViewTransformationAnimation.setInterpolator(Interpolators.LINEAR);
79 mViewTransformationAnimation.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD);
80 mViewTransformationAnimation.addListener(new AnimatorListenerAdapter() {
100 mViewTransformationAnimation.start();
128 if (mViewTransformationAnimation !
[all...]

Completed in 59 milliseconds