Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
DNotificationPanel.java396 Animator fadeAnim = ObjectAnimator.ofFloat(mContentParent, "alpha", in createAnimation() local
398 fadeAnim.setInterpolator(appearing ? sAccelerateInterpolator : sDecelerateInterpolator); in createAnimation()
402 .play(fadeAnim) in createAnimation()
/frameworks/base/docs/html/guide/topics/graphics/
Dprop-animation.jd489 <li>Plays <code>fadeAnim</code>.</li>
498 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
499 fadeAnim.setDuration(250);
501 animatorSet.play(bouncer).before(fadeAnim);
573 ValueAnimatorAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
574 fadeAnim.setDuration(250);
575 fadeAnim.addListener(new AnimatorListenerAdapter() {