Searched refs:onFinishRunnable (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
D | ViewUtils.java | 34 public static boolean postFrameDrawn(View view, Runnable onFinishRunnable) { in postFrameDrawn() argument 35 return postFrameDrawn(view, onFinishRunnable, () -> false); in postFrameDrawn() 45 View view, Runnable onFinishRunnable, BooleanSupplier canceled) { in postFrameDrawn() argument 46 return new FrameHandler(view, onFinishRunnable, canceled).schedule(); in postFrameDrawn()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | UiUtils.java | 205 @Nullable final Runnable onFinishRunnable) { in revealOrHideViewWithAnimation() argument 227 if (onFinishRunnable != null) { in revealOrHideViewWithAnimation() 231 ThreadUtil.getMainThreadHandler().post(onFinishRunnable); in revealOrHideViewWithAnimation() 240 } else if (onFinishRunnable != null) { in revealOrHideViewWithAnimation() 242 ThreadUtil.getMainThreadHandler().post(onFinishRunnable); in revealOrHideViewWithAnimation()
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | DragLayer.java | 232 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, in animateViewIntoPosition() argument 235 onFinishRunnable, animationEndStyle, duration, null); in animateViewIntoPosition()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/ |
D | RecentsView.java | 5549 public void switchToScreenshot(Runnable onFinishRunnable) { 5551 if (onFinishRunnable != null) { 5552 onFinishRunnable.run(); 5557 switchToScreenshotInternal(onFinishRunnable); 5560 private void switchToScreenshotInternal(Runnable onFinishRunnable) { 5563 onFinishRunnable.run(); 5583 ViewUtils.postFrameDrawn(taskView, onFinishRunnable); 5594 Runnable onFinishRunnable) { 5599 ViewUtils.postFrameDrawn(taskView, onFinishRunnable); 5601 onFinishRunnable.run();
|