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

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DetailsBackgroundVideoHelper.java 56 private ValueAnimator mBackgroundAnimator;
175 if (mBackgroundAnimator != null) {
176 mBackgroundAnimator.cancel();
177 mBackgroundAnimator = null;
187 if (mBackgroundAnimator != null) {
188 mBackgroundAnimator.cancel();
189 mBackgroundAnimator = null;
202 mBackgroundAnimator = ValueAnimator.ofFloat(startAlpha, endAlpha);
203 mBackgroundAnimator.setDuration(BACKGROUND_CROSS_FADE_DURATION);
204 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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 128 private ObjectAnimator mBackgroundAnimator;
617 if (mBackgroundAnimator != null) {
618 startAlpha = (Float) mBackgroundAnimator.getAnimatedValue();
619 duration = (int) mBackgroundAnimator.getCurrentPlayTime();
620 mBackgroundAnimator.removeAllListeners();
621 mBackgroundAnimator.cancel();
628 mBackgroundAnimator =
630 mBackgroundAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
631 mBackgroundAnimator.setDuration(duration);
632 mBackgroundAnimator.addListener(new AnimatorListenerAdapter()
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 126 private ObjectAnimator mBackgroundAnimator;
459 if (mBackgroundAnimator.isStarted()) {
461 mBackgroundAnimator.cancel();
477 mBackgroundAnimator.setIntValues(mBackgroundColor, color);
478 mBackgroundAnimator.setEvaluator(new ArgbEvaluator());
479 mBackgroundAnimator.setInterpolator(mFastOutLinearIn);
480 mBackgroundAnimator.start();
705 if (mBackgroundAnimator != null) {
709 mBackgroundAnimator = new ObjectAnimator();
710 mBackgroundAnimator.setTarget(mContentView)
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 185 milliseconds