HomeSort by relevance Sort by last modified time
    Searched refs:outAnim (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/transition/
ChangeText.java 210 ValueAnimator outAnim = null, inAnim = null;
213 outAnim = ValueAnimator.ofInt(Color.alpha(startColor), 0);
214 outAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
221 outAnim.addListener(new AnimatorListenerAdapter() {
255 if (outAnim != null && inAnim != null) {
257 ((AnimatorSet) anim).playSequentially(outAnim, inAnim);
258 } else if (outAnim != null) {
259 anim = outAnim;
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java 265 ObjectAnimator outAnim = LauncherAnimUtils.ofFloat(mAnimationBuffer, "alpha", 0f);
266 outAnim.addListener(new AnimatorListenerAdapter() {
291 animSet.playTogether(outAnim, inAnim);

Completed in 118 milliseconds