Home | History | Annotate | Download | only in app

Lines Matching refs:mBackgroundAnimator

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;