Searched refs:revealAnimator (Results 1 – 3 of 3) sorted by relevance
604 val revealAnimator: Animator = ObjectAnimator.ofFloat( in getAlertAnimator() constant606 revealAnimator.setDuration(ALERT_REVEAL_DURATION_MILLIS.toLong()) in getAlertAnimator()607 revealAnimator.setInterpolator(REVEAL_INTERPOLATOR) in getAlertAnimator()608 revealAnimator.addListener(object : AnimatorListenerAdapter() { in getAlertAnimator()630 alertAnimator.play(revealAnimator).before(fadeAnimator) in getAlertAnimator()
282 final Animator revealAnimator = createOpenCloseOutlineProvider()284 revealAnimator.setInterpolator(Interpolators.DEACCEL);285 mOpenCloseAnimator.playTogether(revealAnimator,
292 final Animator animator = revealAnimator(mAppDrawerView, show); in showAppDrawer()317 private Animator revealAnimator(View view, boolean open) { in revealAnimator() method in LauncherActivity