/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherStateManager.java | 190 public void goToState(LauncherState state, boolean animated, Runnable onCompleteRunnable) { in goToState() argument 191 goToState(state, animated, 0, onCompleteRunnable); in goToState() 197 public void goToState(LauncherState state, long delay, Runnable onCompleteRunnable) { in goToState() argument 198 goToState(state, true, delay, onCompleteRunnable); in goToState() 229 final Runnable onCompleteRunnable) { in goToState() argument 234 if (onCompleteRunnable != null) { in goToState() 235 onCompleteRunnable.run(); in goToState() 240 if (onCompleteRunnable != null) { in goToState() 244 onCompleteRunnable.run(); in goToState() 266 if (onCompleteRunnable != null) { in goToState() [all …]
|
D | Workspace.java | 1768 Runnable onCompleteRunnable = null; in onDrop() local 1877 onCompleteRunnable = new Runnable() { in onDrop() 1909 onCompleteRunnable, cell, SPRING_LOADED_TRANSITION_MS); in onDrop() 1934 NORMAL, SPRING_LOADED_EXIT_DELAY, onCompleteRunnable); in onDrop() 2658 final Runnable onCompleteRunnable, int animationType, final View finalView, 2685 DragLayer.ANIMATION_END_DISAPPEAR, onCompleteRunnable, duration); 2700 if (onCompleteRunnable != null) { 2701 onCompleteRunnable.run();
|
D | Launcher.java | 839 Runnable onCompleteRunnable = null; in completeTwoStageWidgetDrop() local 848 onCompleteRunnable = new Runnable() { in completeTwoStageWidgetDrop() 861 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable, in completeTwoStageWidgetDrop() 863 } else if (onCompleteRunnable != null) { in completeTwoStageWidgetDrop() 865 onCompleteRunnable.run(); in completeTwoStageWidgetDrop()
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | DragLayer.java | 307 Runnable onCompleteRunnable = () -> child.setVisibility(VISIBLE); in animateViewIntoPosition() local 309 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); in animateViewIntoPosition() 314 float finalScaleX, float finalScaleY, Runnable onCompleteRunnable, in animateViewIntoPosition() argument 320 null, null, onCompleteRunnable, animationEndStyle, anchorView); in animateViewIntoPosition() 349 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { in animateView() argument 411 animateView(view, updateCb, duration, interpolator, onCompleteRunnable, animationEndStyle, in animateView() 416 TimeInterpolator interpolator, final Runnable onCompleteRunnable, in animateView() argument 440 if (onCompleteRunnable != null) { in animateView() 441 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 | 324 Runnable onCompleteRunnable = new Runnable() { in animateDragViewToOriginalPosition() local 335 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 | 80 final Runnable onCompleteRunnable) { in createFirstItemAnimation() argument 83 FINAL_ITEM_ANIMATION_DURATION, onCompleteRunnable) in createFirstItemAnimation() 85 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 | 1044 Runnable onCompleteRunnable = new Runnable() { in replaceFolderWithFinalItem() local 1082 mFolderIcon.performDestroyAnimation(onCompleteRunnable); in replaceFolderWithFinalItem() 1084 onCompleteRunnable.run(); in replaceFolderWithFinalItem()
|