Searched refs:mFastSendAnimator (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/beam/
H A DSendUi.java75 * mFastSendAnimator: quickly scales the screenshot down to 0.0f (used for send success)
76 * mFadeInAnimator: fades the current activity back in (used after mFastSendAnimator completes)
82 * mPreAnimator => mSlowSendAnimator => mFastSendAnimator => mFadeInAnimator (send success)
86 * Note that mFastSendAnimator and mFadeInAnimator are combined in a set, as they
163 final ObjectAnimator mFastSendAnimator; field in class:SendUi
260 mFastSendAnimator = ObjectAnimator.ofPropertyValuesHolder(mScreenshotView, postX,
262 mFastSendAnimator.setInterpolator(new DecelerateInterpolator());
263 mFastSendAnimator.setDuration(FAST_SEND_DURATION_MS);
264 mFastSendAnimator.addListener(this);
298 mSuccessAnimatorSet.playSequentially(mFastSendAnimator, mFadeInAnimato
[all...]

Completed in 97 milliseconds