blob: 7fef904c2946061c19c6f6073e01ef8d35544d22 [file] [log] [blame]
Winson Chung7dd3b522018-05-14 10:07:15 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Vadim Tryshevfedca432015-08-19 17:55:02 -070018package com.android.launcher3.dragndrop;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Sunny Goyald0030b02017-12-08 15:07:24 -080020import static com.android.launcher3.compat.AccessibilityManagerCompat.sendCustomAccessibilityEvent;
21
Adam Cohen716b51e2011-06-30 12:09:54 -070022import android.animation.Animator;
23import android.animation.AnimatorListenerAdapter;
24import android.animation.TimeInterpolator;
25import android.animation.ValueAnimator;
26import android.animation.ValueAnimator.AnimatorUpdateListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.content.Context;
Adam Cohen716b51e2011-06-30 12:09:54 -070028import android.content.res.Resources;
Winson Chung360e63f2012-04-27 13:48:05 -070029import android.graphics.Canvas;
Adam Cohen67882692011-03-11 15:29:03 -080030import android.graphics.Rect;
Sunny Goyal5d1873a2018-05-08 11:10:44 -070031import android.graphics.drawable.Drawable;
32import android.support.annotation.NonNull;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.util.AttributeSet;
Dave Hawkey26279c62013-11-07 14:26:19 -070034import android.view.KeyEvent;
35import android.view.MotionEvent;
36import android.view.View;
Adam Cohen3371da02011-10-25 21:38:29 -070037import android.view.accessibility.AccessibilityEvent;
38import android.view.accessibility.AccessibilityManager;
Adam Cohen3e8f8112011-07-02 18:03:00 -070039import android.view.animation.Interpolator;
Adam Cohenac8c8762011-07-13 11:15:27 -070040import android.widget.TextView;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041
Sunny Goyal740ac7f2016-09-28 16:47:32 -070042import com.android.launcher3.AbstractFloatingView;
Vadim Tryshevfedca432015-08-19 17:55:02 -070043import com.android.launcher3.CellLayout;
Tony Wickham1bce7fd2016-04-28 17:39:03 -070044import com.android.launcher3.DropTargetBar;
Vadim Tryshevfedca432015-08-19 17:55:02 -070045import com.android.launcher3.Launcher;
Adam Cohenf9c184a2016-01-15 16:47:43 -080046import com.android.launcher3.R;
Vadim Tryshevfedca432015-08-19 17:55:02 -070047import com.android.launcher3.ShortcutAndWidgetContainer;
Sunny Goyal5d1873a2018-05-08 11:10:44 -070048import com.android.launcher3.Workspace;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070049import com.android.launcher3.anim.Interpolators;
Sunny Goyal26119432016-02-18 22:09:23 +000050import com.android.launcher3.folder.Folder;
51import com.android.launcher3.folder.FolderIcon;
Sunny Goyal6639a5d2018-02-28 15:09:36 -080052import com.android.launcher3.graphics.ViewScrim;
Sunny Goyal5d1873a2018-05-08 11:10:44 -070053import com.android.launcher3.graphics.WorkspaceAndHotseatScrim;
Sunny Goyal3333b0c2016-05-09 20:43:21 -070054import com.android.launcher3.keyboard.ViewGroupFocusHelper;
Sunny Goyal85525172017-11-06 13:00:42 -080055import com.android.launcher3.uioverrides.UiFactory;
Adam Cohen091440a2015-03-18 14:16:05 -070056import com.android.launcher3.util.Thunk;
Sunny Goyal0b0847b2018-03-14 12:30:11 -070057import com.android.launcher3.views.BaseDragLayer;
Adam Cohenbc927f92014-10-28 16:16:02 -070058
Adam Cohen1d9af7d2011-06-22 15:26:58 -070059import java.util.ArrayList;
Adam Cohen67882692011-03-11 15:29:03 -080060
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061/**
Michael Jurka0e260592010-06-30 17:07:39 -070062 * A ViewGroup that coordinates dragging across its descendants
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063 */
Sunny Goyal0b0847b2018-03-14 12:30:11 -070064public class DragLayer extends BaseDragLayer<Launcher> {
Sunny Goyal0fa93bc2015-05-13 11:23:24 -070065
Sunny Goyal6001ea22018-05-10 16:31:00 -070066 public static final int ALPHA_INDEX_OVERLAY = 0;
67 public static final int ALPHA_INDEX_LAUNCHER_LOAD = 1;
68 public static final int ALPHA_INDEX_TRANSITIONS = 2;
69 public static final int ALPHA_INDEX_SWIPE_UP = 3;
70 private static final int ALPHA_CHANNEL_COUNT = 4;
71
Sunny Goyalb1359562015-05-19 19:07:29 -070072 public static final int ANIMATION_END_DISAPPEAR = 0;
Sunny Goyalb1359562015-05-19 19:07:29 -070073 public static final int ANIMATION_END_REMAIN_VISIBLE = 2;
74
Adam Cohen091440a2015-03-18 14:16:05 -070075 @Thunk DragController mDragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076
Adam Cohen716b51e2011-06-30 12:09:54 -070077 // Variables relating to animation of views after drop
78 private ValueAnimator mDropAnim = null;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070079 private final TimeInterpolator mCubicEaseOutInterpolator = Interpolators.DEACCEL_1_5;
Adam Cohen091440a2015-03-18 14:16:05 -070080 @Thunk DragView mDropView = null;
81 @Thunk int mAnchorViewInitialScrollX = 0;
82 @Thunk View mAnchorView = null;
Adam Cohen8dfcba42011-07-07 16:38:18 -070083
Adam Cohen3371da02011-10-25 21:38:29 -070084 private boolean mHoverPointClosesFolder = false;
Adam Cohenb0f3d742013-10-08 19:16:14 -070085
Adam Cohen432609a2014-03-13 17:03:22 -070086 private int mTopViewIndex;
Adam Cohen2d783ce2014-04-07 14:11:48 -070087 private int mChildCountOnLastUpdate = -1;
Jorim Jaggi55bd9722014-01-16 15:30:42 -080088
Tony Wickham0f97b782015-12-02 17:55:07 -080089 // Related to adjacent page hints
Sunny Goyal3333b0c2016-05-09 20:43:21 -070090 private final ViewGroupFocusHelper mFocusIndicatorHelper;
Sunny Goyal5d1873a2018-05-08 11:10:44 -070091 private final WorkspaceAndHotseatScrim mScrim;
Sunny Goyal3333b0c2016-05-09 20:43:21 -070092
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093 /**
94 * Used to create a new DragLayer from XML.
95 *
96 * @param context The application's context.
Michael Jurka0e260592010-06-30 17:07:39 -070097 * @param attrs The attributes set containing the Workspace's customization values.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098 */
99 public DragLayer(Context context, AttributeSet attrs) {
Sunny Goyal6001ea22018-05-10 16:31:00 -0700100 super(context, attrs, ALPHA_CHANNEL_COUNT);
Winson Chungbe62afa2011-02-03 23:14:57 -0800101
102 // Disable multitouch across the workspace/all apps/customize tray
103 setMotionEventSplittingEnabled(false);
Adam Cohen21b41102011-11-01 17:29:52 -0700104 setChildrenDrawingOrderEnabled(true);
Winson Chung360e63f2012-04-27 13:48:05 -0700105
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700106 mFocusIndicatorHelper = new ViewGroupFocusHelper(this);
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700107 mScrim = new WorkspaceAndHotseatScrim(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108 }
109
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700110 public void setup(DragController dragController, Workspace workspace) {
Hyunyoung Song645764e2016-06-06 14:19:02 -0700111 mDragController = dragController;
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700112 mScrim.setWorkspace(workspace);
113 recreateControllers();
114 }
115
116 public void recreateControllers() {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700117 mControllers = UiFactory.createTouchControllers(mActivity);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800118 }
Adam Cohen76fc0852011-06-17 13:26:23 -0700119
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700120 public ViewGroupFocusHelper getFocusIndicatorHelper() {
121 return mFocusIndicatorHelper;
122 }
123
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124 @Override
125 public boolean dispatchKeyEvent(KeyEvent event) {
Joe Onorato00acb122009-08-04 16:04:30 -0400126 return mDragController.dispatchKeyEvent(event) || super.dispatchKeyEvent(event);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800127 }
128
Hyunyoung Songa9a8a422016-06-15 16:45:48 -0700129 public boolean isEventOverHotseat(MotionEvent ev) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700130 return isEventOverView(mActivity.getHotseat(), ev);
Hyunyoung Songa9a8a422016-06-15 16:45:48 -0700131 }
132
Adam Cohen3371da02011-10-25 21:38:29 -0700133 private boolean isEventOverFolder(Folder folder, MotionEvent ev) {
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700134 return isEventOverView(folder, ev);
Adam Cohen3371da02011-10-25 21:38:29 -0700135 }
136
Sunny Goyalccc414b2015-04-30 12:28:16 -0700137 private boolean isEventOverDropTargetBar(MotionEvent ev) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700138 return isEventOverView(mActivity.getDropTargetBar(), ev);
Sunny Goyalccc414b2015-04-30 12:28:16 -0700139 }
140
Adam Cohen67882692011-03-11 15:29:03 -0800141 @Override
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800142 protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
143 ViewScrim scrim = ViewScrim.get(child);
144 if (scrim != null) {
145 scrim.draw(canvas, getWidth(), getHeight());
146 }
147 return super.drawChild(canvas, child, drawingTime);
148 }
149
150 @Override
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700151 protected boolean findActiveController(MotionEvent ev) {
152 if (mActivity.getStateManager().getState().disableInteraction) {
Winson Chungca845522018-03-05 19:39:25 +0000153 // You Shall Not Pass!!!
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700154 mActiveController = null;
Winson Chungca845522018-03-05 19:39:25 +0000155 return true;
156 }
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700157 return super.findActiveController(ev);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 }
159
160 @Override
Adam Cohen3371da02011-10-25 21:38:29 -0700161 public boolean onInterceptHoverEvent(MotionEvent ev) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700162 if (mActivity == null || mActivity.getWorkspace() == null) {
Michael Jurka023c71e2012-10-19 17:32:24 +0200163 return false;
164 }
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700165 Folder currentFolder = Folder.getOpen(mActivity);
Adam Cohen3371da02011-10-25 21:38:29 -0700166 if (currentFolder == null) {
167 return false;
168 } else {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700169 AccessibilityManager accessibilityManager = (AccessibilityManager)
170 getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
Michael Jurka8b805b12012-04-18 14:23:14 -0700171 if (accessibilityManager.isTouchExplorationEnabled()) {
Adam Cohen3371da02011-10-25 21:38:29 -0700172 final int action = ev.getAction();
Sunny Goyalccc414b2015-04-30 12:28:16 -0700173 boolean isOverFolderOrSearchBar;
Adam Cohen3371da02011-10-25 21:38:29 -0700174 switch (action) {
175 case MotionEvent.ACTION_HOVER_ENTER:
Sunny Goyalccc414b2015-04-30 12:28:16 -0700176 isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) ||
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700177 (isInAccessibleDrag() && isEventOverDropTargetBar(ev));
Sunny Goyalccc414b2015-04-30 12:28:16 -0700178 if (!isOverFolderOrSearchBar) {
Adam Cohen3371da02011-10-25 21:38:29 -0700179 sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName());
180 mHoverPointClosesFolder = true;
181 return true;
Adam Cohen3371da02011-10-25 21:38:29 -0700182 }
Mihail Dumitrescu693fbc72014-01-03 12:40:22 +0000183 mHoverPointClosesFolder = false;
184 break;
Adam Cohen3371da02011-10-25 21:38:29 -0700185 case MotionEvent.ACTION_HOVER_MOVE:
Sunny Goyalccc414b2015-04-30 12:28:16 -0700186 isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) ||
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700187 (isInAccessibleDrag() && isEventOverDropTargetBar(ev));
Sunny Goyalccc414b2015-04-30 12:28:16 -0700188 if (!isOverFolderOrSearchBar && !mHoverPointClosesFolder) {
Adam Cohen3371da02011-10-25 21:38:29 -0700189 sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName());
190 mHoverPointClosesFolder = true;
191 return true;
Sunny Goyalccc414b2015-04-30 12:28:16 -0700192 } else if (!isOverFolderOrSearchBar) {
Adam Cohen3371da02011-10-25 21:38:29 -0700193 return true;
194 }
Mihail Dumitrescu693fbc72014-01-03 12:40:22 +0000195 mHoverPointClosesFolder = false;
Adam Cohen3371da02011-10-25 21:38:29 -0700196 }
197 }
198 }
199 return false;
200 }
201
202 private void sendTapOutsideFolderAccessibilityEvent(boolean isEditingName) {
Sunny Goyal52851aa2016-09-02 10:41:43 -0700203 int stringId = isEditingName ? R.string.folder_tap_to_rename : R.string.folder_tap_to_close;
Sunny Goyald0030b02017-12-08 15:07:24 -0800204 sendCustomAccessibilityEvent(
Sunny Goyal52851aa2016-09-02 10:41:43 -0700205 this, AccessibilityEvent.TYPE_VIEW_FOCUSED, getContext().getString(stringId));
Adam Cohen3371da02011-10-25 21:38:29 -0700206 }
207
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700208 @Override
209 public boolean onHoverEvent(MotionEvent ev) {
210 // If we've received this, we've already done the necessary handling
211 // in onInterceptHoverEvent. Return true to consume the event.
212 return false;
213 }
214
215
Sunny Goyalccc414b2015-04-30 12:28:16 -0700216 private boolean isInAccessibleDrag() {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700217 return mActivity.getAccessibilityDelegate().isInAccessibleDrag();
Sunny Goyalccc414b2015-04-30 12:28:16 -0700218 }
219
Adam Cohen3371da02011-10-25 21:38:29 -0700220 @Override
Winson Chung83ca4802013-04-12 15:10:52 -0700221 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
Sunny Goyal7d552c82016-08-03 10:31:11 -0700222 // Shortcuts can appear above folder
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700223 View topView = AbstractFloatingView.getTopOpenView(mActivity);
Sunny Goyal7d552c82016-08-03 10:31:11 -0700224 if (topView != null) {
Sunny Goyal52851aa2016-09-02 10:41:43 -0700225 if (child == topView) {
226 return super.onRequestSendAccessibilityEvent(child, event);
227 }
228 if (isInAccessibleDrag() && child instanceof DropTargetBar) {
229 return super.onRequestSendAccessibilityEvent(child, event);
230 }
231 // Skip propagating onRequestSendAccessibilityEvent for all other children
232 // which are not topView
233 return false;
Winson Chung83ca4802013-04-12 15:10:52 -0700234 }
235 return super.onRequestSendAccessibilityEvent(child, event);
236 }
237
238 @Override
239 public void addChildrenForAccessibility(ArrayList<View> childrenForAccessibility) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700240 View topView = AbstractFloatingView.getTopOpenView(mActivity);
Sunny Goyal52851aa2016-09-02 10:41:43 -0700241 if (topView != null) {
242 // Only add the top view as a child for accessibility when it is open
243 childrenForAccessibility.add(topView);
Sunny Goyalccc414b2015-04-30 12:28:16 -0700244
245 if (isInAccessibleDrag()) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700246 childrenForAccessibility.add(mActivity.getDropTargetBar());
Sunny Goyalccc414b2015-04-30 12:28:16 -0700247 }
Winson Chung83ca4802013-04-12 15:10:52 -0700248 } else {
249 super.addChildrenForAccessibility(childrenForAccessibility);
250 }
251 }
252
253 @Override
Romain Guyea3763c2010-01-11 18:02:04 -0800254 public boolean dispatchUnhandledMove(View focused, int direction) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700255 return super.dispatchUnhandledMove(focused, direction)
256 || mDragController.dispatchUnhandledMove(focused, direction);
Romain Guyea3763c2010-01-11 18:02:04 -0800257 }
Adam Cohen120980b2010-12-08 11:05:37 -0800258
Adam Cohenbc927f92014-10-28 16:16:02 -0700259 @Override
Sunny Goyal19d32b72018-01-19 14:26:18 -0800260 public boolean dispatchTouchEvent(MotionEvent ev) {
261 ev.offsetLocation(getTranslationX(), 0);
262 try {
263 return super.dispatchTouchEvent(ev);
264 } finally {
265 ev.offsetLocation(-getTranslationX(), 0);
266 }
267 }
268
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800269 public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha,
270 float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable,
271 int duration) {
Adam Cohenb7e16182011-07-15 17:55:02 -0700272 Rect r = new Rect();
273 getViewRectRelativeToSelf(dragView, r);
274 final int fromX = r.left;
275 final int fromY = r.top;
276
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800277 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
Adam Cohened66b2b2012-01-23 17:28:51 -0800278 onFinishRunnable, animationEndStyle, duration, null);
279 }
280
Sunny Goyal1797af42017-10-06 13:29:57 -0700281 public void animateViewIntoPosition(DragView dragView, final View child, View anchorView) {
282 animateViewIntoPosition(dragView, child, -1, anchorView);
Adam Cohened51cc92011-08-01 20:28:08 -0700283 }
284
285 public void animateViewIntoPosition(DragView dragView, final View child, int duration,
Sunny Goyal1797af42017-10-06 13:29:57 -0700286 View anchorView) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700287 ShortcutAndWidgetContainer parentChildren = (ShortcutAndWidgetContainer) child.getParent();
Adam Cohen716b51e2011-06-30 12:09:54 -0700288 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
Winson Chungeecf02d2012-03-02 17:14:58 -0800289 parentChildren.measureChild(child);
Adam Cohen716b51e2011-06-30 12:09:54 -0700290
Adam Cohen3e8f8112011-07-02 18:03:00 -0700291 Rect r = new Rect();
292 getViewRectRelativeToSelf(dragView, r);
Adam Cohen716b51e2011-06-30 12:09:54 -0700293
294 int coord[] = new int[2];
Adam Cohen307fe232012-08-16 17:55:58 -0700295 float childScale = child.getScaleX();
296 coord[0] = lp.x + (int) (child.getMeasuredWidth() * (1 - childScale) / 2);
297 coord[1] = lp.y + (int) (child.getMeasuredHeight() * (1 - childScale) / 2);
Winson Chungeecf02d2012-03-02 17:14:58 -0800298
Adam Cohen8dfcba42011-07-07 16:38:18 -0700299 // Since the child hasn't necessarily been laid out, we force the lp to be updated with
Adam Cohenac8c8762011-07-13 11:15:27 -0700300 // the correct coordinates (above) and use these to determine the final location
Winson Chung557d6ed2011-07-08 15:34:52 -0700301 float scale = getDescendantCoordRelativeToSelf((View) child.getParent(), coord);
Adam Cohen307fe232012-08-16 17:55:58 -0700302 // We need to account for the scale of the child itself, as the above only accounts for
303 // for the scale in parents.
304 scale *= childScale;
Adam Cohenac8c8762011-07-13 11:15:27 -0700305 int toX = coord[0];
306 int toY = coord[1];
Winson Chungeeb5bbc2013-11-13 15:47:05 -0800307 float toScale = scale;
Andrew Flynn4497ebf2012-05-09 11:28:00 -0700308 if (child instanceof TextView) {
309 TextView tv = (TextView) child;
Winson Chungeeb5bbc2013-11-13 15:47:05 -0800310 // Account for the source scale of the icon (ie. from AllApps to Workspace, in which
311 // the workspace may have smaller icon bounds).
312 toScale = scale / dragView.getIntrinsicIconScaleFactor();
Andrew Flynn4497ebf2012-05-09 11:28:00 -0700313
314 // The child may be scaled (always about the center of the view) so to account for it,
315 // we have to offset the position by the scaled size. Once we do that, we can center
316 // the drag view about the scaled child view.
Winson Chungeeb5bbc2013-11-13 15:47:05 -0800317 toY += Math.round(toScale * tv.getPaddingTop());
318 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2;
Sunny Goyal95abbb32014-08-04 10:53:22 -0700319 if (dragView.getDragVisualizeOffset() != null) {
320 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y);
321 }
322
Andrew Flynn4497ebf2012-05-09 11:28:00 -0700323 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
324 } else if (child instanceof FolderIcon) {
Winson Chungea359c62011-08-03 17:06:35 -0700325 // Account for holographic blur padding on the drag view
Winson Chung5f8afe62013-08-12 16:19:28 -0700326 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop()));
Jon Mirandac9c57632016-10-12 20:35:59 -0700327 toY -= scale * dragView.getBlurSizeOutline() / 2;
Adam Cohen307fe232012-08-16 17:55:58 -0700328 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
Winson Chungea359c62011-08-03 17:06:35 -0700329 // Center in the x coordinate about the target's drawable
330 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
Adam Cohenac8c8762011-07-13 11:15:27 -0700331 } else {
332 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
333 toX -= (Math.round(scale * (dragView.getMeasuredWidth()
334 - child.getMeasuredWidth()))) / 2;
335 }
336
337 final int fromX = r.left;
338 final int fromY = r.top;
Adam Cohen716b51e2011-06-30 12:09:54 -0700339 child.setVisibility(INVISIBLE);
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800340 Runnable onCompleteRunnable = () -> child.setVisibility(VISIBLE);
Winson Chungeeb5bbc2013-11-13 15:47:05 -0800341 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
Adam Cohend41fbf52012-02-16 23:53:59 -0800342 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView);
Winson Chung557d6ed2011-07-08 15:34:52 -0700343 }
344
Adam Cohend41fbf52012-02-16 23:53:59 -0800345 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
Adam Cohened66b2b2012-01-23 17:28:51 -0800346 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
347 float finalScaleX, float finalScaleY, Runnable onCompleteRunnable,
348 int animationEndStyle, int duration, View anchorView) {
Adam Cohen8dfcba42011-07-07 16:38:18 -0700349 Rect from = new Rect(fromX, fromY, fromX +
350 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
Adam Cohen3e8f8112011-07-02 18:03:00 -0700351 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());
Adam Cohened66b2b2012-01-23 17:28:51 -0800352 animateView(view, from, to, finalAlpha, initScaleX, initScaleY, finalScaleX, finalScaleY, duration,
353 null, null, onCompleteRunnable, animationEndStyle, anchorView);
Adam Cohen3e8f8112011-07-02 18:03:00 -0700354 }
355
Adam Cohenb7e16182011-07-15 17:55:02 -0700356 /**
357 * This method animates a view at the end of a drag and drop animation.
358 *
359 * @param view The view to be animated. This view is drawn directly into DragLayer, and so
360 * doesn't need to be a child of DragLayer.
361 * @param from The initial location of the view. Only the left and top parameters are used.
362 * @param to The final location of the view. Only the left and top parameters are used. This
363 * location doesn't account for scaling, and so should be centered about the desired
364 * final location (including scaling).
365 * @param finalAlpha The final alpha of the view, in case we want it to fade as it animates.
Sunny Goyal6178f132016-07-11 17:30:03 -0700366 * @param finalScaleX The final scale of the view. The view is scaled about its center.
367 * @param finalScaleY The final scale of the view. The view is scaled about its center.
Adam Cohenb7e16182011-07-15 17:55:02 -0700368 * @param duration The duration of the animation.
369 * @param motionInterpolator The interpolator to use for the location of the view.
370 * @param alphaInterpolator The interpolator to use for the alpha of the view.
371 * @param onCompleteRunnable Optional runnable to run on animation completion.
Sunny Goyal6178f132016-07-11 17:30:03 -0700372 * @param animationEndStyle Whether or not to fade out the view once the animation completes.
373 * {@link #ANIMATION_END_DISAPPEAR} or {@link #ANIMATION_END_REMAIN_VISIBLE}.
Adam Cohen6441de02011-12-14 14:25:32 -0800374 * @param anchorView If not null, this represents the view which the animated view stays
375 * anchored to in case scrolling is currently taking place. Note: currently this is
376 * only used for the X dimension for the case of the workspace.
Adam Cohenb7e16182011-07-15 17:55:02 -0700377 */
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800378 public void animateView(final DragView view, final Rect from, final Rect to,
379 final float finalAlpha, final float initScaleX, final float initScaleY,
380 final float finalScaleX, final float finalScaleY, int duration,
381 final Interpolator motionInterpolator, final Interpolator alphaInterpolator,
382 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) {
383
Adam Cohen716b51e2011-06-30 12:09:54 -0700384 // Calculate the duration of the animation based on the object's distance
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700385 final float dist = (float) Math.hypot(to.left - from.left, to.top - from.top);
Adam Cohen716b51e2011-06-30 12:09:54 -0700386 final Resources res = getResources();
387 final float maxDist = (float) res.getInteger(R.integer.config_dropAnimMaxDist);
Adam Cohen3e8f8112011-07-02 18:03:00 -0700388
389 // If duration < 0, this is a cue to compute the duration based on the distance
390 if (duration < 0) {
Sunny Goyaldec3a902017-01-25 18:23:36 -0800391 duration = res.getInteger(R.integer.config_dropAnimMaxDuration);
392 if (dist < maxDist) {
393 duration *= mCubicEaseOutInterpolator.getInterpolation(dist / maxDist);
Adam Cohen3e8f8112011-07-02 18:03:00 -0700394 }
Sunny Goyaldec3a902017-01-25 18:23:36 -0800395 duration = Math.max(duration, res.getInteger(R.integer.config_dropAnimMinDuration));
Adam Cohen716b51e2011-06-30 12:09:54 -0700396 }
397
Winson Chung043f2af2012-03-01 16:09:54 -0800398 // Fall back to cubic ease out interpolator for the animation if none is specified
399 TimeInterpolator interpolator = null;
Adam Cohen3e8f8112011-07-02 18:03:00 -0700400 if (alphaInterpolator == null || motionInterpolator == null) {
Winson Chung043f2af2012-03-01 16:09:54 -0800401 interpolator = mCubicEaseOutInterpolator;
Adam Cohen3e8f8112011-07-02 18:03:00 -0700402 }
Adam Cohen716b51e2011-06-30 12:09:54 -0700403
Winson Chung043f2af2012-03-01 16:09:54 -0800404 // Animate the view
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800405 final float initAlpha = view.getAlpha();
Winson Chung043f2af2012-03-01 16:09:54 -0800406 final float dropViewScale = view.getScaleX();
407 AnimatorUpdateListener updateCb = new AnimatorUpdateListener() {
408 @Override
Adam Cohen716b51e2011-06-30 12:09:54 -0700409 public void onAnimationUpdate(ValueAnimator animation) {
410 final float percent = (Float) animation.getAnimatedValue();
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800411 final int width = view.getMeasuredWidth();
412 final int height = view.getMeasuredHeight();
Adam Cohen716b51e2011-06-30 12:09:54 -0700413
Adam Cohen3e8f8112011-07-02 18:03:00 -0700414 float alphaPercent = alphaInterpolator == null ? percent :
415 alphaInterpolator.getInterpolation(percent);
416 float motionPercent = motionInterpolator == null ? percent :
417 motionInterpolator.getInterpolation(percent);
418
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800419 float initialScaleX = initScaleX * dropViewScale;
420 float initialScaleY = initScaleY * dropViewScale;
421 float scaleX = finalScaleX * percent + initialScaleX * (1 - percent);
422 float scaleY = finalScaleY * percent + initialScaleY * (1 - percent);
423 float alpha = finalAlpha * alphaPercent + initAlpha * (1 - alphaPercent);
424
425 float fromLeft = from.left + (initialScaleX - 1f) * width / 2;
426 float fromTop = from.top + (initialScaleY - 1f) * height / 2;
427
428 int x = (int) (fromLeft + Math.round(((to.left - fromLeft) * motionPercent)));
429 int y = (int) (fromTop + Math.round(((to.top - fromTop) * motionPercent)));
430
Adam Cohen28f852a2013-10-15 14:34:05 -0700431 int anchorAdjust = mAnchorView == null ? 0 : (int) (mAnchorView.getScaleX() *
432 (mAnchorViewInitialScrollX - mAnchorView.getScrollX()));
433
434 int xPos = x - mDropView.getScrollX() + anchorAdjust;
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800435 int yPos = y - mDropView.getScrollY();
436
437 mDropView.setTranslationX(xPos);
438 mDropView.setTranslationY(yPos);
439 mDropView.setScaleX(scaleX);
440 mDropView.setScaleY(scaleY);
441 mDropView.setAlpha(alpha);
Adam Cohen716b51e2011-06-30 12:09:54 -0700442 }
Winson Chung043f2af2012-03-01 16:09:54 -0800443 };
444 animateView(view, updateCb, duration, interpolator, onCompleteRunnable, animationEndStyle,
445 anchorView);
446 }
447
448 public void animateView(final DragView view, AnimatorUpdateListener updateCb, int duration,
449 TimeInterpolator interpolator, final Runnable onCompleteRunnable,
450 final int animationEndStyle, View anchorView) {
451 // Clean up the previous animations
452 if (mDropAnim != null) mDropAnim.cancel();
Winson Chung043f2af2012-03-01 16:09:54 -0800453
454 // Show the drop view if it was previously hidden
455 mDropView = view;
456 mDropView.cancelAnimation();
Vadim Tryshevd6c8e7e2015-07-08 13:40:14 -0700457 mDropView.requestLayout();
Winson Chung043f2af2012-03-01 16:09:54 -0800458
459 // Set the anchor view if the page is scrolling
460 if (anchorView != null) {
461 mAnchorViewInitialScrollX = anchorView.getScrollX();
462 }
463 mAnchorView = anchorView;
464
465 // Create and start the animation
466 mDropAnim = new ValueAnimator();
467 mDropAnim.setInterpolator(interpolator);
468 mDropAnim.setDuration(duration);
469 mDropAnim.setFloatValues(0f, 1f);
470 mDropAnim.addUpdateListener(updateCb);
Adam Cohen3e8f8112011-07-02 18:03:00 -0700471 mDropAnim.addListener(new AnimatorListenerAdapter() {
472 public void onAnimationEnd(Animator animation) {
Adam Cohen8dfcba42011-07-07 16:38:18 -0700473 if (onCompleteRunnable != null) {
474 onCompleteRunnable.run();
475 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800476 switch (animationEndStyle) {
477 case ANIMATION_END_DISAPPEAR:
478 clearAnimatedView();
479 break;
Adam Cohened66b2b2012-01-23 17:28:51 -0800480 case ANIMATION_END_REMAIN_VISIBLE:
481 break;
Adam Cohen3e8f8112011-07-02 18:03:00 -0700482 }
Winson Chung7dd3b522018-05-14 10:07:15 -0700483 mDropAnim = null;
Adam Cohen3e8f8112011-07-02 18:03:00 -0700484 }
485 });
Adam Cohen716b51e2011-06-30 12:09:54 -0700486 mDropAnim.start();
487 }
488
Adam Cohened66b2b2012-01-23 17:28:51 -0800489 public void clearAnimatedView() {
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800490 if (mDropAnim != null) {
491 mDropAnim.cancel();
492 }
Winson Chung7dd3b522018-05-14 10:07:15 -0700493 mDropAnim = null;
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800494 if (mDropView != null) {
Adam Cohen2d783ce2014-04-07 14:11:48 -0700495 mDragController.onDeferredEndDrag(mDropView);
Winson Chung7bd1bbb2012-02-13 18:29:29 -0800496 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800497 mDropView = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800498 invalidate();
499 }
500
501 public View getAnimatedView() {
502 return mDropView;
503 }
504
Adam Cohen716b51e2011-06-30 12:09:54 -0700505 @Override
Jon Miranda758d5042017-11-08 14:38:23 -0800506 public void onViewAdded(View child) {
507 super.onViewAdded(child);
Adam Cohen21b41102011-11-01 17:29:52 -0700508 updateChildIndices();
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700509 UiFactory.onLauncherStateOrFocusChanged(mActivity);
Adam Cohen21b41102011-11-01 17:29:52 -0700510 }
511
512 @Override
Jon Miranda758d5042017-11-08 14:38:23 -0800513 public void onViewRemoved(View child) {
514 super.onViewRemoved(child);
Adam Cohen21b41102011-11-01 17:29:52 -0700515 updateChildIndices();
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700516 UiFactory.onLauncherStateOrFocusChanged(mActivity);
Adam Cohen21b41102011-11-01 17:29:52 -0700517 }
518
Adam Cohen432609a2014-03-13 17:03:22 -0700519 @Override
520 public void bringChildToFront(View child) {
521 super.bringChildToFront(child);
522 updateChildIndices();
523 }
524
Adam Cohen21b41102011-11-01 17:29:52 -0700525 private void updateChildIndices() {
Adam Cohen432609a2014-03-13 17:03:22 -0700526 mTopViewIndex = -1;
Jorim Jaggi55bd9722014-01-16 15:30:42 -0800527 int childCount = getChildCount();
528 for (int i = 0; i < childCount; i++) {
Adam Cohenb670f192014-04-08 15:34:17 -0700529 if (getChildAt(i) instanceof DragView) {
Adam Cohen432609a2014-03-13 17:03:22 -0700530 mTopViewIndex = i;
Jorim Jaggi55bd9722014-01-16 15:30:42 -0800531 }
Adam Cohen21b41102011-11-01 17:29:52 -0700532 }
Adam Cohen2d783ce2014-04-07 14:11:48 -0700533 mChildCountOnLastUpdate = childCount;
Adam Cohen21b41102011-11-01 17:29:52 -0700534 }
535
536 @Override
537 protected int getChildDrawingOrder(int childCount, int i) {
Adam Cohen2d783ce2014-04-07 14:11:48 -0700538 if (mChildCountOnLastUpdate != childCount) {
539 // between platform versions 17 and 18, behavior for onChildViewRemoved / Added changed.
540 // Pre-18, the child was not added / removed by the time of those callbacks. We need to
541 // force update our representation of things here to avoid crashing on pre-18 devices
542 // in certain instances.
543 updateChildIndices();
544 }
545
Adam Cohen432609a2014-03-13 17:03:22 -0700546 // i represents the current draw iteration
547 if (mTopViewIndex == -1) {
548 // in general we do nothing
Adam Cohen21b41102011-11-01 17:29:52 -0700549 return i;
Adam Cohen432609a2014-03-13 17:03:22 -0700550 } else if (i == childCount - 1) {
551 // if we have a top index, we return it when drawing last item (highest z-order)
552 return mTopViewIndex;
553 } else if (i < mTopViewIndex) {
Jorim Jaggi55bd9722014-01-16 15:30:42 -0800554 return i;
Adam Cohen21b41102011-11-01 17:29:52 -0700555 } else {
Adam Cohen432609a2014-03-13 17:03:22 -0700556 // for indexes greater than the top index, we fetch one item above to shift for the
557 // displacement of the top index
558 return i + 1;
Adam Cohen21b41102011-11-01 17:29:52 -0700559 }
560 }
Winson Chung360e63f2012-04-27 13:48:05 -0700561
Winson Chung360e63f2012-04-27 13:48:05 -0700562 @Override
563 protected void dispatchDraw(Canvas canvas) {
Sunny Goyal0fa93bc2015-05-13 11:23:24 -0700564 // Draw the background below children.
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700565 mScrim.draw(canvas);
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700566 mFocusIndicatorHelper.draw(canvas);
Winson Chung360e63f2012-04-27 13:48:05 -0700567 super.dispatchDraw(canvas);
Adam Cohen8cc05502014-08-22 18:32:15 -0700568 }
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700569
570 @Override
571 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
572 super.onSizeChanged(w, h, oldw, oldh);
573 mScrim.setSize(w, h);
574 }
575
576 @Override
577 public void setInsets(Rect insets) {
578 super.setInsets(insets);
579 mScrim.onInsetsChanged(insets);
580 }
581
582 public WorkspaceAndHotseatScrim getScrim() {
583 return mScrim;
584 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800585}