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

  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
DetailsBackgroundVideoHelper.java 57 private ValueAnimator mBackgroundAnimator;
176 if (mBackgroundAnimator != null) {
177 mBackgroundAnimator.cancel();
178 mBackgroundAnimator = null;
188 if (mBackgroundAnimator != null) {
189 mBackgroundAnimator.cancel();
190 mBackgroundAnimator = null;
203 mBackgroundAnimator = ValueAnimator.ofFloat(startAlpha, endAlpha);
204 mBackgroundAnimator.setDuration(BACKGROUND_CROSS_FADE_DURATION);
205 mBackgroundAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener()
    [all...]
  /frameworks/base/core/java/android/app/
ExitTransitionCoordinator.java 60 private ObjectAnimator mBackgroundAnimator;
293 if (mBackgroundAnimator == null) {
299 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 0);
300 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() {
303 mBackgroundAnimator = null;
311 mBackgroundAnimator.setDuration(getFadeDuration());
312 mBackgroundAnimator.start();
497 if (mBackgroundAnimator != null) {
498 mBackgroundAnimator.cancel();
499 mBackgroundAnimator = null
    [all...]
EnterTransitionCoordinator.java 57 private ObjectAnimator mBackgroundAnimator;
587 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 255);
588 mBackgroundAnimator.setDuration(getFadeDuration());
589 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() {
596 mBackgroundAnimator.start();
618 if (mBackgroundAnimator != null) {
619 mBackgroundAnimator.end();
620 mBackgroundAnimator = null;
661 if (mBackgroundAnimator != null) {
662 mBackgroundAnimator.cancel()
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 121 private ObjectAnimator mBackgroundAnimator;
323 if (mBackgroundAnimator.isStarted()) {
325 mBackgroundAnimator.cancel();
342 mBackgroundAnimator.setIntValues(mBackgroundColor, color);
343 mBackgroundAnimator.setEvaluator(new ArgbEvaluator());
344 mBackgroundAnimator.setInterpolator(mFastOutLinearIn);
345 mBackgroundAnimator.start();
486 if (mBackgroundAnimator != null) {
490 mBackgroundAnimator = new ObjectAnimator();
491 mBackgroundAnimator.setTarget(mContentView)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 127 private ObjectAnimator mBackgroundAnimator;
654 if (mBackgroundAnimator != null) {
655 startAlpha = (Float) mBackgroundAnimator.getAnimatedValue();
656 duration = (int) mBackgroundAnimator.getCurrentPlayTime();
657 mBackgroundAnimator.removeAllListeners();
658 mBackgroundAnimator.cancel();
665 mBackgroundAnimator =
667 mBackgroundAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
668 mBackgroundAnimator.setDuration(duration);
669 mBackgroundAnimator.addListener(new AnimatorListenerAdapter()
    [all...]

Completed in 96 milliseconds