Home
last modified time | relevance | path

Searched refs:onCompleteRunnable (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java290 Runnable onCompleteRunnable = () -> child.setVisibility(VISIBLE); in animateViewIntoPosition() local
292 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); in animateViewIntoPosition()
297 float finalScaleX, float finalScaleY, Runnable onCompleteRunnable, in animateViewIntoPosition() argument
303 null, null, onCompleteRunnable, animationEndStyle, anchorView); in animateViewIntoPosition()
332 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { in animateView() argument
394 animateView(view, updateCb, duration, interpolator, onCompleteRunnable, animationEndStyle, in animateView()
399 TimeInterpolator interpolator, final Runnable onCompleteRunnable, in animateView() argument
423 if (onCompleteRunnable != null) { in animateView()
424 onCompleteRunnable.run(); in animateView()
DDragController.java306 Runnable onCompleteRunnable = new Runnable() { in animateDragViewToOriginalPosition() local
317 mDragObject.dragView.animateTo(mMotionDown.x, mMotionDown.y, onCompleteRunnable, duration); in animateDragViewToOriginalPosition()
DDragView.java433 public void animateTo(int toTouchX, int toTouchY, Runnable onCompleteRunnable, int duration) { in animateTo() argument
437 DragLayer.ANIMATION_END_DISAPPEAR, onCompleteRunnable, duration); in animateTo()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderPreviewItemAnim.java68 int duration, final Runnable onCompleteRunnable) { in FolderPreviewItemAnim() argument
84 if (onCompleteRunnable != null) { in FolderPreviewItemAnim()
85 onCompleteRunnable.run(); in FolderPreviewItemAnim()
DLauncherDelegate.java98 Runnable onCompleteRunnable = new Runnable() { in replaceFolderWithFinalItem() local
146 folder.mFolderIcon.performDestroyAnimation(onCompleteRunnable); in replaceFolderWithFinalItem()
148 onCompleteRunnable.run(); in replaceFolderWithFinalItem()
DPreviewItemManager.java113 final Runnable onCompleteRunnable) { in createFirstItemAnimation() argument
116 FINAL_ITEM_ANIMATION_DURATION, onCompleteRunnable) in createFirstItemAnimation()
118 INITIAL_ITEM_ANIMATION_DURATION, onCompleteRunnable); in createFirstItemAnimation()
DFolderIcon.java317 public void performDestroyAnimation(Runnable onCompleteRunnable) { in performDestroyAnimation() argument
319 mPreviewItemManager.createFirstItemAnimation(true /* reverse */, onCompleteRunnable) in performDestroyAnimation()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DTutorialController.java346 void showRippleEffect(@Nullable Runnable onCompleteRunnable) { in showRippleEffect() argument
351 if (onCompleteRunnable != null) { in showRippleEffect()
352 onCompleteRunnable.run(); in showRippleEffect()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java1791 Runnable onCompleteRunnable = dragView::resumeColorExtraction; in onDrop() local
1904 final Runnable previousRunnable = onCompleteRunnable; in onDrop()
1905 onCompleteRunnable = () -> { in onDrop()
1943 final Runnable onCompleteCallback = onCompleteRunnable; in onDrop()
1975 forSuccessCallback(onCompleteRunnable)); in onDrop()
2691 final Runnable onCompleteRunnable, int animationType, final View finalView,
2719 DragLayer.ANIMATION_END_DISAPPEAR, onCompleteRunnable, duration);
2734 if (onCompleteRunnable != null) {
2735 onCompleteRunnable.run();
DLauncher.java881 Runnable onCompleteRunnable = null; in completeTwoStageWidgetDrop() local
890 onCompleteRunnable = new Runnable() { in completeTwoStageWidgetDrop()
903 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable, in completeTwoStageWidgetDrop()
905 } else if (onCompleteRunnable != null) { in completeTwoStageWidgetDrop()
907 onCompleteRunnable.run(); in completeTwoStageWidgetDrop()