Searched refs:revealAnimator (Results 1 – 3 of 3) sorted by relevance
616 final Animator revealAnimator = ObjectAnimator.ofFloat( in getAlertAnimator() local618 revealAnimator.setDuration(ALERT_REVEAL_DURATION_MILLIS); in getAlertAnimator()619 revealAnimator.setInterpolator(REVEAL_INTERPOLATOR); in getAlertAnimator()620 revealAnimator.addListener(new AnimatorListenerAdapter() { in getAlertAnimator()646 alertAnimator.play(revealAnimator).before(fadeAnimator); in getAlertAnimator()
264 final Animator revealAnimator = createOpenCloseOutlineProvider() in animateOpenOrClosed() local266 revealAnimator.setInterpolator(Interpolators.DEACCEL); in animateOpenOrClosed()267 mOpenCloseAnimator.play(revealAnimator); in animateOpenOrClosed()
292 final Animator animator = revealAnimator(mAppDrawerView, show); in showAppDrawer()317 private Animator revealAnimator(View view, boolean open) { in revealAnimator() method in LauncherActivity