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

  /frameworks/base/core/java/android/app/
ExitTransitionCoordinator.java 64 private ObjectAnimator mBackgroundAnimator;
287 if (mBackgroundAnimator == null) {
293 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 0);
294 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() {
297 mBackgroundAnimator = null;
304 mBackgroundAnimator.setDuration(getFadeDuration());
305 mBackgroundAnimator.start();
475 if (mBackgroundAnimator != null) {
476 mBackgroundAnimator.cancel();
477 mBackgroundAnimator = null
    [all...]
EnterTransitionCoordinator.java 51 private ObjectAnimator mBackgroundAnimator;
518 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 255);
519 mBackgroundAnimator.setDuration(getFadeDuration());
520 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() {
526 mBackgroundAnimator.start();
544 if (mBackgroundAnimator != null) {
545 mBackgroundAnimator.end();
546 mBackgroundAnimator = null;
578 if (mBackgroundAnimator != null) {
579 mBackgroundAnimator.cancel()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 119 private ObjectAnimator mBackgroundAnimator;
434 if (mBackgroundAnimator != null) {
435 startAlpha = (Float) mBackgroundAnimator.getAnimatedValue();
436 duration = (int) mBackgroundAnimator.getCurrentPlayTime();
437 mBackgroundAnimator.removeAllListeners();
438 mBackgroundAnimator.cancel();
445 mBackgroundAnimator =
447 mBackgroundAnimator.setInterpolator(mFastOutSlowInInterpolator);
448 mBackgroundAnimator.setDuration(duration);
449 mBackgroundAnimator.addListener(new AnimatorListenerAdapter()
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
GlowPadView.java 216 private Tweener mBackgroundAnimator;
789 if (mBackgroundAnimator != null) {
790 mBackgroundAnimator.animator.cancel();
792 mBackgroundAnimator = Tweener.to(background, duration,
796 mBackgroundAnimator.animator.start();
    [all...]

Completed in 160 milliseconds