Home
last modified time | relevance | path

Searched refs:endAction (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DMessagingPropertyAnimator.java214 public static void fadeOut(final View view, Runnable endAction) { in fadeOut() argument
221 if (endAction != null) { in fadeOut()
222 endAction.run(); in fadeOut()
235 if (endAction != null) { in fadeOut()
236 endAction.run(); in fadeOut()
DMessagingGroup.java316 public void removeGroupAnimated(Runnable endAction) { in removeGroupAnimated() argument
320 if (endAction != null) { in removeGroupAnimated()
321 endAction.run(); in removeGroupAnimated()
326 public void performRemoveAnimation(View message, Runnable endAction) { in performRemoveAnimation() argument
327 performRemoveAnimation(message, -message.getHeight(), endAction); in performRemoveAnimation()
330 private void performRemoveAnimation(View view, int disappearTranslation, Runnable endAction) { in performRemoveAnimation() argument
333 MessagingPropertyAnimator.fadeOut(view, endAction); in performRemoveAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAnimationProperties.java56 Consumer<Property> endAction = mAnimationEndAction;
68 endAction.accept(property);
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-layout.md72 …, endAction)`, which will call endAction as soon as the alpha animation is finished. A special cas…
73 …ndex` returns a `MultiAnimationStarter` with a single method, `startAll(endAction)`, which starts …
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java378 public void dismissChild(final View animView, float velocity, final Runnable endAction, in dismissChild() argument
458 if (endAction != null) { in dismissChild()
459 endAction.run(); in dismissChild()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/legacysplitscreen/
DDividerView.java612 Consumer<Boolean> endAction = cancelled -> { in getFlingAnimator() local
669 endAction.accept(mCancelled); in getFlingAnimator()
673 getHandler().postDelayed(() -> endAction.accept(cancelled), delay); in getFlingAnimator()
/frameworks/base/core/java/android/widget/
DRemoteViews.java1699 Runnable endAction = (Runnable) method.invoke(view, value); in initActionAsync() local
1700 if (endAction == null) { in initActionAsync()
1704 if (endAction instanceof ViewStub.ViewReplaceRunnable) { in initActionAsync()
1708 ((ViewStub.ViewReplaceRunnable) endAction).view); in initActionAsync()
1710 return new RunnableAction(endAction); in initActionAsync()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationPanelViewController.java3829 public ViewPropertyAnimator fadeOut(long startDelayMs, long durationMs, Runnable endAction) { in fadeOut() argument
3832 endAction); in fadeOut()