/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherStateManager.java | 188 public void goToState(LauncherState state, boolean animated, Runnable onCompleteRunnable) { in goToState() argument 189 goToState(state, animated, 0, onCompleteRunnable); in goToState() 195 public void goToState(LauncherState state, long delay, Runnable onCompleteRunnable) { in goToState() argument 196 goToState(state, true, delay, onCompleteRunnable); in goToState() 227 final Runnable onCompleteRunnable) { in goToState() argument 232 if (onCompleteRunnable != null) { in goToState() 233 onCompleteRunnable.run(); in goToState() 238 if (onCompleteRunnable != null) { in goToState() 242 onCompleteRunnable.run(); in goToState() 264 if (onCompleteRunnable != null) { in goToState() [all …]
|
D | Workspace.java | 1783 Runnable onCompleteRunnable = null; in onDrop() local 1892 onCompleteRunnable = new Runnable() { in onDrop() 1924 onCompleteRunnable, cell, SPRING_LOADED_TRANSITION_MS); in onDrop() 1949 NORMAL, SPRING_LOADED_EXIT_DELAY, onCompleteRunnable); in onDrop() 2676 final Runnable onCompleteRunnable, int animationType, final View finalView, 2703 DragLayer.ANIMATION_END_DISAPPEAR, onCompleteRunnable, duration); 2718 if (onCompleteRunnable != null) { 2719 onCompleteRunnable.run();
|
D | Launcher.java | 856 Runnable onCompleteRunnable = null; in completeTwoStageWidgetDrop() local 865 onCompleteRunnable = new Runnable() { in completeTwoStageWidgetDrop() 878 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable, in completeTwoStageWidgetDrop() 880 } else if (onCompleteRunnable != null) { in completeTwoStageWidgetDrop() 882 onCompleteRunnable.run(); in completeTwoStageWidgetDrop()
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | DragLayer.java | 311 Runnable onCompleteRunnable = () -> child.setVisibility(VISIBLE); in animateViewIntoPosition() local 313 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); in animateViewIntoPosition() 318 float finalScaleX, float finalScaleY, Runnable onCompleteRunnable, in animateViewIntoPosition() argument 324 null, null, onCompleteRunnable, animationEndStyle, anchorView); in animateViewIntoPosition() 353 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { in animateView() argument 415 animateView(view, updateCb, duration, interpolator, onCompleteRunnable, animationEndStyle, in animateView() 420 TimeInterpolator interpolator, final Runnable onCompleteRunnable, in animateView() argument 444 if (onCompleteRunnable != null) { in animateView() 445 onCompleteRunnable.run(); in animateView()
|
D | DragView.java | 527 public void animateTo(int toTouchX, int toTouchY, Runnable onCompleteRunnable, int duration) { in animateTo() argument 531 DragLayer.ANIMATION_END_DISAPPEAR, onCompleteRunnable, duration); in animateTo()
|
D | DragController.java | 330 Runnable onCompleteRunnable = new Runnable() { in animateDragViewToOriginalPosition() local 341 mDragObject.dragView.animateTo(mMotionDownX, mMotionDownY, onCompleteRunnable, duration); in animateDragViewToOriginalPosition()
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | FolderPreviewItemAnim.java | 67 int duration, final Runnable onCompleteRunnable) { in FolderPreviewItemAnim() argument 82 if (onCompleteRunnable != null) { in FolderPreviewItemAnim() 83 onCompleteRunnable.run(); in FolderPreviewItemAnim()
|
D | PreviewItemManager.java | 106 final Runnable onCompleteRunnable) { in createFirstItemAnimation() argument 109 FINAL_ITEM_ANIMATION_DURATION, onCompleteRunnable) in createFirstItemAnimation() 111 INITIAL_ITEM_ANIMATION_DURATION, onCompleteRunnable); in createFirstItemAnimation()
|
D | FolderIcon.java | 285 public void performDestroyAnimation(Runnable onCompleteRunnable) { in performDestroyAnimation() argument 287 mPreviewItemManager.createFirstItemAnimation(true /* reverse */, onCompleteRunnable) in performDestroyAnimation()
|
D | Folder.java | 1065 Runnable onCompleteRunnable = new Runnable() { in replaceFolderWithFinalItem() local 1103 mFolderIcon.performDestroyAnimation(onCompleteRunnable); in replaceFolderWithFinalItem() 1105 onCompleteRunnable.run(); in replaceFolderWithFinalItem()
|