Home
last modified time | relevance | path

Searched refs:endRunnable (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCrossFadeHelper.java39 public static void fadeOut(final View view, final Runnable endRunnable) { in fadeOut() argument
40 fadeOut(view, ANIMATION_DURATION_LENGTH, 0, endRunnable); in fadeOut()
59 @Nullable final Runnable endRunnable) { in fadeOut() argument
67 if (endRunnable != null) { in fadeOut()
68 endRunnable.run(); in fadeOut()
153 public static void fadeIn(final View view, Runnable endRunnable) { in fadeIn() argument
154 fadeIn(view, ANIMATION_DURATION_LENGTH, /* delay= */ 0, endRunnable); in fadeIn()
173 @Nullable Runnable endRunnable) { in fadeIn() argument
184 .withEndAction(endRunnable); in fadeIn()
DTransformableView.java46 void transformTo(TransformableView notification, Runnable endRunnable); in transformTo() argument
DViewTransformationHelper.java104 public void transformTo(final TransformableView notification, final Runnable endRunnable) { in transformTo() argument
119 if (endRunnable != null) { in transformTo()
120 endRunnable.run(); in transformTo()
DStatusBarIconView.java861 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable) { in setVisibleState() argument
862 setVisibleState(visibleState, animate, endRunnable, 0); in setVisibleState()
873 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable, in setVisibleState() argument
902 runRunnable(endRunnable); in setVisibleState()
928 runRunnable(endRunnable); in setVisibleState()
943 runRunnable(endRunnable); in setVisibleState()
996 @Nullable Runnable endRunnable) { in setDozing() argument
1001 }, dozing, animate, delay, this, endRunnable); in setDozing()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
DAppearAnimationUtils.java90 Runnable endRunnable = null; in startAnimations() local
92 endRunnable = finishListener; in startAnimations()
100 mAppearing, mInterpolator, endRunnable); in startAnimations()
118 Runnable endRunnable = null; in startAnimations() local
120 endRunnable = finishListener; in startAnimations()
124 mAppearing, mInterpolator, endRunnable); in startAnimations()
182 boolean appearing, Interpolator interpolator, final Runnable endRunnable) { in createAnimation() argument
184 view, delay, duration, translationY, appearing, interpolator, endRunnable, null); in createAnimation()
190 final Runnable endRunnable, final AnimatorListenerAdapter animatorListener) { in createAnimation() argument
222 if (endRunnable != null) { in createAnimation()
[all …]
DAppearAnimationCreator.java32 Runnable endRunnable); in createAnimation() argument
39 Runnable endRunnable, AnimatorListenerAdapter animatorListener) {} in createAnimation() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationDozeHelper.java65 boolean animate, long delay, View view, @Nullable Runnable endRunnable) { in setDozing() argument
74 if (endRunnable != null) { in setDozing()
75 endRunnable.run(); in setDozing()
90 if (endRunnable != null) { in setDozing()
91 endRunnable.run(); in setDozing()
DViewGroupFadeHelper.kt45 endRunnable: Runnable?) { in <lambda>()
78 endRunnable?.run() in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarAnimationHelper.java203 public void animateCollapse(Runnable endRunnable) { in animateCollapse() argument
230 if (endRunnable != null) { in animateCollapse()
231 endRunnable.run(); in animateCollapse()
281 public void animateDismiss(Runnable endRunnable) { in animateDismiss() argument
297 .withEndAction(endRunnable) in animateDismiss()
343 public void animateIntoTarget(MagneticTarget target, @Nullable Runnable endRunnable) { in animateIntoTarget() argument
403 if (endRunnable != null) { in animateIntoTarget()
404 endRunnable.run(); in animateIntoTarget()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSIconViewImpl.java200 final Runnable endRunnable) { in animateGrayScale() argument
210 mColorAnimator.addListener(new EndRunnableAnimatorListener(endRunnable)); in animateGrayScale()
216 endRunnable.run(); in animateGrayScale()
268 EndRunnableAnimatorListener(Runnable endRunnable) { in EndRunnableAnimatorListener() argument
270 mRunnable = endRunnable; in EndRunnableAnimatorListener()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackStateAnimator.java525 Runnable endRunnable = null; in processAnimationEvents() local
540 endRunnable = changingView::removeFromTransientContainer; in processAnimationEvents()
555 final Runnable tmpEndRunnable = endRunnable; in processAnimationEvents()
601 } else if (endRunnable != null) { in processAnimationEvents()
602 endRunnable.run(); in processAnimationEvents()
632 Runnable endRunnable = null; in processAnimationEvents() local
647 endRunnable = changingView::removeFromTransientContainer; in processAnimationEvents()
662 final Runnable tmpEndRunnable = endRunnable; in processAnimationEvents()
708 } else if (endRunnable != null) { in processAnimationEvents()
709 endRunnable.run(); in processAnimationEvents()
DNotificationStackScrollLayout.java2003 View child, Consumer<Boolean> endRunnable, int delay, long duration) {
2006 false /* visible */, true /* animate */, endRunnable);
2012 endRunnable,
5413 Consumer<Boolean> endRunnable = null; in clearNotifications() local
5415 endRunnable = dismissInBackend; in clearNotifications()
5417 dismissViewAnimated(view, endRunnable, totalDelay, ANIMATION_DURATION_SWIPE); in clearNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DHybridNotificationView.java130 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument
131 mTransformationHelper.transformTo(notification, endRunnable); in transformTo()
DStackScrollerDecorView.java272 Runnable endRunnable) { in performAddAnimation() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconContainer.java698 @Nullable Runnable endRunnable) { in setDozing() argument
705 final Runnable onChildCompleted = endRunnable == null ? null : new Runnable() { in setDozing()
711 endRunnable.run(); in setDozing()
961 final Runnable endRunnable = mIsolatedIconAnimationEndRunnable; in getEndAction()
963 endRunnable.run(); in getEndAction()
964 if (mIsolatedIconAnimationEndRunnable == endRunnable) { in getEndAction()
DCentralSurfacesEmptyImpl.kt55 endRunnable: Runnable?, in fadeKeyguardAfterLaunchTransition()
DCentralSurfaces.java234 Runnable endRunnable, Runnable cancelRunnable); in fadeKeyguardAfterLaunchTransition() argument
DCentralSurfacesImpl.java2117 Runnable endRunnable, Runnable cancelRunnable) { in fadeKeyguardAfterLaunchTransition() argument
2119 mLaunchTransitionEndRunnable = endRunnable; in fadeKeyguardAfterLaunchTransition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationViewWrapper.java291 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument
293 CrossFadeHelper.fadeOut(mView, endRunnable); in transformTo()
DNotificationHeaderViewWrapper.java325 public void transformTo(TransformableView notification, Runnable endRunnable) { in transformTo() argument
326 mTransformationHelper.transformTo(notification, endRunnable); in transformTo()
/frameworks/opt/photoviewer/src/com/android/ex/photo/
DPhotoViewController.java1025 Runnable endRunnable = new Runnable() { in runEnterAnimation() local
1034 animator.withEndAction(endRunnable); in runEnterAnimation()
1036 mHandler.postDelayed(endRunnable, ENTER_ANIMATION_DURATION_MS); in runEnterAnimation()
1107 Runnable endRunnable = new Runnable() { in runExitAnimation() local
1132 animator.withEndAction(endRunnable); in runExitAnimation()
1134 mHandler.postDelayed(endRunnable, EXIT_ANIMATION_DURATION_MS); in runExitAnimation()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DViewHierarchyAnimator.kt447 val endRunnable = Runnable { in <lambda>() constant
490 endRunnable, in <lambda>()