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 | 234 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, in animateViewIntoPosition() argument 237 onFinishRunnable, animationEndStyle, duration, null); in animateViewIntoPosition()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/ |
D | RecentsView.java | 5936 public void switchToScreenshot(Runnable onFinishRunnable) { 5938 if (onFinishRunnable != null) { 5939 onFinishRunnable.run(); 5944 switchToScreenshotInternal(onFinishRunnable); 5947 private void switchToScreenshotInternal(Runnable onFinishRunnable) { 5950 onFinishRunnable.run(); 5969 ViewUtils.postFrameDrawn(taskView, onFinishRunnable); 5980 Runnable onFinishRunnable) { 5985 ViewUtils.postFrameDrawn(taskView, onFinishRunnable); 5987 onFinishRunnable.run();
|