Home | History | Annotate | Download | only in app

Lines Matching refs:mBackgroundAnimator

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();
580 mBackgroundAnimator = null;