Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DRectFSpringAnim2.java110 private ValueAnimator mRectScaleAnim; field in RectFSpringAnim2
216 mRectScaleAnim = ObjectAnimator.ofFloat(this, PROGRESS, 0, 1f) in start()
218 mRectScaleAnim.setInterpolator(mCloseInterpolator); in start()
219 mRectScaleAnim.addListener(new AnimatorListenerAdapter() { in start()
228 mRectScaleAnim.addUpdateListener(mValues); in start()
235 mRectScaleAnim.start(); in start()
295 mRectScaleAnim.end(); in end()
326 float currentPlayTime = mRectScaleAnimEnded ? mRectScaleAnim.getDuration() in onUpdate()
327 : mRectScaleAnim.getCurrentPlayTime(); in onUpdate()
328 float linearProgress = Math.min(1f, currentPlayTime / mRectScaleAnim.getDuration()); in onUpdate()
DRectFSpringAnim.java101 private SpringAnimation mRectScaleAnim; field in RectFSpringAnim
184 mRectScaleAnim = new SpringAnimation(this, RECT_SCALE_PROGRESS)
201 mRectScaleAnim.start();
211 if (mRectScaleAnim.canSkipToEnd()) { in end()
212 mRectScaleAnim.skipToEnd(); in end()