Winson Chung | 7dd3b52 | 2018-05-14 10:07:15 -0700 | [diff] [blame^] | 1 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2 | /* |
| 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 Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 18 | package com.android.launcher3.dragndrop; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 19 | |
Sunny Goyal | d0030b0 | 2017-12-08 15:07:24 -0800 | [diff] [blame] | 20 | import static com.android.launcher3.compat.AccessibilityManagerCompat.sendCustomAccessibilityEvent; |
| 21 | |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 22 | import android.animation.Animator; |
| 23 | import android.animation.AnimatorListenerAdapter; |
| 24 | import android.animation.TimeInterpolator; |
| 25 | import android.animation.ValueAnimator; |
| 26 | import android.animation.ValueAnimator.AnimatorUpdateListener; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 27 | import android.content.Context; |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 28 | import android.content.res.Resources; |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 29 | import android.graphics.Canvas; |
Adam Cohen | 6788269 | 2011-03-11 15:29:03 -0800 | [diff] [blame] | 30 | import android.graphics.Rect; |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 31 | import android.graphics.drawable.Drawable; |
| 32 | import android.support.annotation.NonNull; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 33 | import android.util.AttributeSet; |
Dave Hawkey | 26279c6 | 2013-11-07 14:26:19 -0700 | [diff] [blame] | 34 | import android.view.KeyEvent; |
| 35 | import android.view.MotionEvent; |
| 36 | import android.view.View; |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 37 | import android.view.accessibility.AccessibilityEvent; |
| 38 | import android.view.accessibility.AccessibilityManager; |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 39 | import android.view.animation.Interpolator; |
Adam Cohen | ac8c876 | 2011-07-13 11:15:27 -0700 | [diff] [blame] | 40 | import android.widget.TextView; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 41 | |
Sunny Goyal | 740ac7f | 2016-09-28 16:47:32 -0700 | [diff] [blame] | 42 | import com.android.launcher3.AbstractFloatingView; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 43 | import com.android.launcher3.CellLayout; |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 44 | import com.android.launcher3.DropTargetBar; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 45 | import com.android.launcher3.Launcher; |
Adam Cohen | f9c184a | 2016-01-15 16:47:43 -0800 | [diff] [blame] | 46 | import com.android.launcher3.R; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 47 | import com.android.launcher3.ShortcutAndWidgetContainer; |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 48 | import com.android.launcher3.Workspace; |
Sunny Goyal | 5bc6b6f | 2017-10-26 15:36:10 -0700 | [diff] [blame] | 49 | import com.android.launcher3.anim.Interpolators; |
Sunny Goyal | 2611943 | 2016-02-18 22:09:23 +0000 | [diff] [blame] | 50 | import com.android.launcher3.folder.Folder; |
| 51 | import com.android.launcher3.folder.FolderIcon; |
Sunny Goyal | 6639a5d | 2018-02-28 15:09:36 -0800 | [diff] [blame] | 52 | import com.android.launcher3.graphics.ViewScrim; |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 53 | import com.android.launcher3.graphics.WorkspaceAndHotseatScrim; |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 54 | import com.android.launcher3.keyboard.ViewGroupFocusHelper; |
Sunny Goyal | 8552517 | 2017-11-06 13:00:42 -0800 | [diff] [blame] | 55 | import com.android.launcher3.uioverrides.UiFactory; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 56 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 57 | import com.android.launcher3.views.BaseDragLayer; |
Adam Cohen | bc927f9 | 2014-10-28 16:16:02 -0700 | [diff] [blame] | 58 | |
Adam Cohen | 1d9af7d | 2011-06-22 15:26:58 -0700 | [diff] [blame] | 59 | import java.util.ArrayList; |
Adam Cohen | 6788269 | 2011-03-11 15:29:03 -0800 | [diff] [blame] | 60 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 61 | /** |
Michael Jurka | 0e26059 | 2010-06-30 17:07:39 -0700 | [diff] [blame] | 62 | * A ViewGroup that coordinates dragging across its descendants |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 63 | */ |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 64 | public class DragLayer extends BaseDragLayer<Launcher> { |
Sunny Goyal | 0fa93bc | 2015-05-13 11:23:24 -0700 | [diff] [blame] | 65 | |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 66 | 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 Goyal | b135956 | 2015-05-19 19:07:29 -0700 | [diff] [blame] | 72 | public static final int ANIMATION_END_DISAPPEAR = 0; |
Sunny Goyal | b135956 | 2015-05-19 19:07:29 -0700 | [diff] [blame] | 73 | public static final int ANIMATION_END_REMAIN_VISIBLE = 2; |
| 74 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 75 | @Thunk DragController mDragController; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 76 | |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 77 | // Variables relating to animation of views after drop |
| 78 | private ValueAnimator mDropAnim = null; |
Sunny Goyal | 5bc6b6f | 2017-10-26 15:36:10 -0700 | [diff] [blame] | 79 | private final TimeInterpolator mCubicEaseOutInterpolator = Interpolators.DEACCEL_1_5; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 80 | @Thunk DragView mDropView = null; |
| 81 | @Thunk int mAnchorViewInitialScrollX = 0; |
| 82 | @Thunk View mAnchorView = null; |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 83 | |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 84 | private boolean mHoverPointClosesFolder = false; |
Adam Cohen | b0f3d74 | 2013-10-08 19:16:14 -0700 | [diff] [blame] | 85 | |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 86 | private int mTopViewIndex; |
Adam Cohen | 2d783ce | 2014-04-07 14:11:48 -0700 | [diff] [blame] | 87 | private int mChildCountOnLastUpdate = -1; |
Jorim Jaggi | 55bd972 | 2014-01-16 15:30:42 -0800 | [diff] [blame] | 88 | |
Tony Wickham | 0f97b78 | 2015-12-02 17:55:07 -0800 | [diff] [blame] | 89 | // Related to adjacent page hints |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 90 | private final ViewGroupFocusHelper mFocusIndicatorHelper; |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 91 | private final WorkspaceAndHotseatScrim mScrim; |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 92 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 93 | /** |
| 94 | * Used to create a new DragLayer from XML. |
| 95 | * |
| 96 | * @param context The application's context. |
Michael Jurka | 0e26059 | 2010-06-30 17:07:39 -0700 | [diff] [blame] | 97 | * @param attrs The attributes set containing the Workspace's customization values. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 98 | */ |
| 99 | public DragLayer(Context context, AttributeSet attrs) { |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 100 | super(context, attrs, ALPHA_CHANNEL_COUNT); |
Winson Chung | be62afa | 2011-02-03 23:14:57 -0800 | [diff] [blame] | 101 | |
| 102 | // Disable multitouch across the workspace/all apps/customize tray |
| 103 | setMotionEventSplittingEnabled(false); |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 104 | setChildrenDrawingOrderEnabled(true); |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 105 | |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 106 | mFocusIndicatorHelper = new ViewGroupFocusHelper(this); |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 107 | mScrim = new WorkspaceAndHotseatScrim(this); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 108 | } |
| 109 | |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 110 | public void setup(DragController dragController, Workspace workspace) { |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 111 | mDragController = dragController; |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 112 | mScrim.setWorkspace(workspace); |
| 113 | recreateControllers(); |
| 114 | } |
| 115 | |
| 116 | public void recreateControllers() { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 117 | mControllers = UiFactory.createTouchControllers(mActivity); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 118 | } |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 119 | |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 120 | public ViewGroupFocusHelper getFocusIndicatorHelper() { |
| 121 | return mFocusIndicatorHelper; |
| 122 | } |
| 123 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 124 | @Override |
| 125 | public boolean dispatchKeyEvent(KeyEvent event) { |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 126 | return mDragController.dispatchKeyEvent(event) || super.dispatchKeyEvent(event); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 127 | } |
| 128 | |
Hyunyoung Song | a9a8a42 | 2016-06-15 16:45:48 -0700 | [diff] [blame] | 129 | public boolean isEventOverHotseat(MotionEvent ev) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 130 | return isEventOverView(mActivity.getHotseat(), ev); |
Hyunyoung Song | a9a8a42 | 2016-06-15 16:45:48 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 133 | private boolean isEventOverFolder(Folder folder, MotionEvent ev) { |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 134 | return isEventOverView(folder, ev); |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 137 | private boolean isEventOverDropTargetBar(MotionEvent ev) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 138 | return isEventOverView(mActivity.getDropTargetBar(), ev); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Adam Cohen | 6788269 | 2011-03-11 15:29:03 -0800 | [diff] [blame] | 141 | @Override |
Sunny Goyal | 6639a5d | 2018-02-28 15:09:36 -0800 | [diff] [blame] | 142 | 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 Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 151 | protected boolean findActiveController(MotionEvent ev) { |
| 152 | if (mActivity.getStateManager().getState().disableInteraction) { |
Winson Chung | ca84552 | 2018-03-05 19:39:25 +0000 | [diff] [blame] | 153 | // You Shall Not Pass!!! |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 154 | mActiveController = null; |
Winson Chung | ca84552 | 2018-03-05 19:39:25 +0000 | [diff] [blame] | 155 | return true; |
| 156 | } |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 157 | return super.findActiveController(ev); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | @Override |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 161 | public boolean onInterceptHoverEvent(MotionEvent ev) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 162 | if (mActivity == null || mActivity.getWorkspace() == null) { |
Michael Jurka | 023c71e | 2012-10-19 17:32:24 +0200 | [diff] [blame] | 163 | return false; |
| 164 | } |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 165 | Folder currentFolder = Folder.getOpen(mActivity); |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 166 | if (currentFolder == null) { |
| 167 | return false; |
| 168 | } else { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 169 | AccessibilityManager accessibilityManager = (AccessibilityManager) |
| 170 | getContext().getSystemService(Context.ACCESSIBILITY_SERVICE); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 171 | if (accessibilityManager.isTouchExplorationEnabled()) { |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 172 | final int action = ev.getAction(); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 173 | boolean isOverFolderOrSearchBar; |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 174 | switch (action) { |
| 175 | case MotionEvent.ACTION_HOVER_ENTER: |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 176 | isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) || |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 177 | (isInAccessibleDrag() && isEventOverDropTargetBar(ev)); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 178 | if (!isOverFolderOrSearchBar) { |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 179 | sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName()); |
| 180 | mHoverPointClosesFolder = true; |
| 181 | return true; |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 182 | } |
Mihail Dumitrescu | 693fbc7 | 2014-01-03 12:40:22 +0000 | [diff] [blame] | 183 | mHoverPointClosesFolder = false; |
| 184 | break; |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 185 | case MotionEvent.ACTION_HOVER_MOVE: |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 186 | isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) || |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 187 | (isInAccessibleDrag() && isEventOverDropTargetBar(ev)); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 188 | if (!isOverFolderOrSearchBar && !mHoverPointClosesFolder) { |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 189 | sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName()); |
| 190 | mHoverPointClosesFolder = true; |
| 191 | return true; |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 192 | } else if (!isOverFolderOrSearchBar) { |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 193 | return true; |
| 194 | } |
Mihail Dumitrescu | 693fbc7 | 2014-01-03 12:40:22 +0000 | [diff] [blame] | 195 | mHoverPointClosesFolder = false; |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | } |
| 199 | return false; |
| 200 | } |
| 201 | |
| 202 | private void sendTapOutsideFolderAccessibilityEvent(boolean isEditingName) { |
Sunny Goyal | 52851aa | 2016-09-02 10:41:43 -0700 | [diff] [blame] | 203 | int stringId = isEditingName ? R.string.folder_tap_to_rename : R.string.folder_tap_to_close; |
Sunny Goyal | d0030b0 | 2017-12-08 15:07:24 -0800 | [diff] [blame] | 204 | sendCustomAccessibilityEvent( |
Sunny Goyal | 52851aa | 2016-09-02 10:41:43 -0700 | [diff] [blame] | 205 | this, AccessibilityEvent.TYPE_VIEW_FOCUSED, getContext().getString(stringId)); |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 208 | @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 Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 216 | private boolean isInAccessibleDrag() { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 217 | return mActivity.getAccessibilityDelegate().isInAccessibleDrag(); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Adam Cohen | 3371da0 | 2011-10-25 21:38:29 -0700 | [diff] [blame] | 220 | @Override |
Winson Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 221 | public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) { |
Sunny Goyal | 7d552c8 | 2016-08-03 10:31:11 -0700 | [diff] [blame] | 222 | // Shortcuts can appear above folder |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 223 | View topView = AbstractFloatingView.getTopOpenView(mActivity); |
Sunny Goyal | 7d552c8 | 2016-08-03 10:31:11 -0700 | [diff] [blame] | 224 | if (topView != null) { |
Sunny Goyal | 52851aa | 2016-09-02 10:41:43 -0700 | [diff] [blame] | 225 | 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 Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 234 | } |
| 235 | return super.onRequestSendAccessibilityEvent(child, event); |
| 236 | } |
| 237 | |
| 238 | @Override |
| 239 | public void addChildrenForAccessibility(ArrayList<View> childrenForAccessibility) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 240 | View topView = AbstractFloatingView.getTopOpenView(mActivity); |
Sunny Goyal | 52851aa | 2016-09-02 10:41:43 -0700 | [diff] [blame] | 241 | if (topView != null) { |
| 242 | // Only add the top view as a child for accessibility when it is open |
| 243 | childrenForAccessibility.add(topView); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 244 | |
| 245 | if (isInAccessibleDrag()) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 246 | childrenForAccessibility.add(mActivity.getDropTargetBar()); |
Sunny Goyal | ccc414b | 2015-04-30 12:28:16 -0700 | [diff] [blame] | 247 | } |
Winson Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 248 | } else { |
| 249 | super.addChildrenForAccessibility(childrenForAccessibility); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | @Override |
Romain Guy | ea3763c | 2010-01-11 18:02:04 -0800 | [diff] [blame] | 254 | public boolean dispatchUnhandledMove(View focused, int direction) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 255 | return super.dispatchUnhandledMove(focused, direction) |
| 256 | || mDragController.dispatchUnhandledMove(focused, direction); |
Romain Guy | ea3763c | 2010-01-11 18:02:04 -0800 | [diff] [blame] | 257 | } |
Adam Cohen | 120980b | 2010-12-08 11:05:37 -0800 | [diff] [blame] | 258 | |
Adam Cohen | bc927f9 | 2014-10-28 16:16:02 -0700 | [diff] [blame] | 259 | @Override |
Sunny Goyal | 19d32b7 | 2018-01-19 14:26:18 -0800 | [diff] [blame] | 260 | 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 Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 269 | public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, |
| 270 | float scaleX, float scaleY, int animationEndStyle, Runnable onFinishRunnable, |
| 271 | int duration) { |
Adam Cohen | b7e1618 | 2011-07-15 17:55:02 -0700 | [diff] [blame] | 272 | Rect r = new Rect(); |
| 273 | getViewRectRelativeToSelf(dragView, r); |
| 274 | final int fromX = r.left; |
| 275 | final int fromY = r.top; |
| 276 | |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 277 | animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 278 | onFinishRunnable, animationEndStyle, duration, null); |
| 279 | } |
| 280 | |
Sunny Goyal | 1797af4 | 2017-10-06 13:29:57 -0700 | [diff] [blame] | 281 | public void animateViewIntoPosition(DragView dragView, final View child, View anchorView) { |
| 282 | animateViewIntoPosition(dragView, child, -1, anchorView); |
Adam Cohen | ed51cc9 | 2011-08-01 20:28:08 -0700 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | public void animateViewIntoPosition(DragView dragView, final View child, int duration, |
Sunny Goyal | 1797af4 | 2017-10-06 13:29:57 -0700 | [diff] [blame] | 286 | View anchorView) { |
Michael Jurka | a52570f | 2012-03-20 03:18:20 -0700 | [diff] [blame] | 287 | ShortcutAndWidgetContainer parentChildren = (ShortcutAndWidgetContainer) child.getParent(); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 288 | CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); |
Winson Chung | eecf02d | 2012-03-02 17:14:58 -0800 | [diff] [blame] | 289 | parentChildren.measureChild(child); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 290 | |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 291 | Rect r = new Rect(); |
| 292 | getViewRectRelativeToSelf(dragView, r); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 293 | |
| 294 | int coord[] = new int[2]; |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 295 | 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 Chung | eecf02d | 2012-03-02 17:14:58 -0800 | [diff] [blame] | 298 | |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 299 | // Since the child hasn't necessarily been laid out, we force the lp to be updated with |
Adam Cohen | ac8c876 | 2011-07-13 11:15:27 -0700 | [diff] [blame] | 300 | // the correct coordinates (above) and use these to determine the final location |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 301 | float scale = getDescendantCoordRelativeToSelf((View) child.getParent(), coord); |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 302 | // 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 Cohen | ac8c876 | 2011-07-13 11:15:27 -0700 | [diff] [blame] | 305 | int toX = coord[0]; |
| 306 | int toY = coord[1]; |
Winson Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 307 | float toScale = scale; |
Andrew Flynn | 4497ebf | 2012-05-09 11:28:00 -0700 | [diff] [blame] | 308 | if (child instanceof TextView) { |
| 309 | TextView tv = (TextView) child; |
Winson Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 310 | // 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 Flynn | 4497ebf | 2012-05-09 11:28:00 -0700 | [diff] [blame] | 313 | |
| 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 Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 317 | toY += Math.round(toScale * tv.getPaddingTop()); |
| 318 | toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 319 | if (dragView.getDragVisualizeOffset() != null) { |
| 320 | toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y); |
| 321 | } |
| 322 | |
Andrew Flynn | 4497ebf | 2012-05-09 11:28:00 -0700 | [diff] [blame] | 323 | toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; |
| 324 | } else if (child instanceof FolderIcon) { |
Winson Chung | ea359c6 | 2011-08-03 17:06:35 -0700 | [diff] [blame] | 325 | // Account for holographic blur padding on the drag view |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 326 | toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop())); |
Jon Miranda | c9c5763 | 2016-10-12 20:35:59 -0700 | [diff] [blame] | 327 | toY -= scale * dragView.getBlurSizeOutline() / 2; |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 328 | toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; |
Winson Chung | ea359c6 | 2011-08-03 17:06:35 -0700 | [diff] [blame] | 329 | // Center in the x coordinate about the target's drawable |
| 330 | toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; |
Adam Cohen | ac8c876 | 2011-07-13 11:15:27 -0700 | [diff] [blame] | 331 | } 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 Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 339 | child.setVisibility(INVISIBLE); |
Sunny Goyal | 6639a5d | 2018-02-28 15:09:36 -0800 | [diff] [blame] | 340 | Runnable onCompleteRunnable = () -> child.setVisibility(VISIBLE); |
Winson Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 341 | animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, |
Adam Cohen | d41fbf5 | 2012-02-16 23:53:59 -0800 | [diff] [blame] | 342 | onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Adam Cohen | d41fbf5 | 2012-02-16 23:53:59 -0800 | [diff] [blame] | 345 | public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY, |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 346 | 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 Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 349 | Rect from = new Rect(fromX, fromY, fromX + |
| 350 | view.getMeasuredWidth(), fromY + view.getMeasuredHeight()); |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 351 | Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight()); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 352 | animateView(view, from, to, finalAlpha, initScaleX, initScaleY, finalScaleX, finalScaleY, duration, |
| 353 | null, null, onCompleteRunnable, animationEndStyle, anchorView); |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Adam Cohen | b7e1618 | 2011-07-15 17:55:02 -0700 | [diff] [blame] | 356 | /** |
| 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 Goyal | 6178f13 | 2016-07-11 17:30:03 -0700 | [diff] [blame] | 366 | * @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 Cohen | b7e1618 | 2011-07-15 17:55:02 -0700 | [diff] [blame] | 368 | * @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 Goyal | 6178f13 | 2016-07-11 17:30:03 -0700 | [diff] [blame] | 372 | * @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 Cohen | 6441de0 | 2011-12-14 14:25:32 -0800 | [diff] [blame] | 374 | * @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 Cohen | b7e1618 | 2011-07-15 17:55:02 -0700 | [diff] [blame] | 377 | */ |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 378 | 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 Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 384 | // Calculate the duration of the animation based on the object's distance |
Sunny Goyal | f7a29e8 | 2015-04-24 15:20:43 -0700 | [diff] [blame] | 385 | final float dist = (float) Math.hypot(to.left - from.left, to.top - from.top); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 386 | final Resources res = getResources(); |
| 387 | final float maxDist = (float) res.getInteger(R.integer.config_dropAnimMaxDist); |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 388 | |
| 389 | // If duration < 0, this is a cue to compute the duration based on the distance |
| 390 | if (duration < 0) { |
Sunny Goyal | dec3a90 | 2017-01-25 18:23:36 -0800 | [diff] [blame] | 391 | duration = res.getInteger(R.integer.config_dropAnimMaxDuration); |
| 392 | if (dist < maxDist) { |
| 393 | duration *= mCubicEaseOutInterpolator.getInterpolation(dist / maxDist); |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 394 | } |
Sunny Goyal | dec3a90 | 2017-01-25 18:23:36 -0800 | [diff] [blame] | 395 | duration = Math.max(duration, res.getInteger(R.integer.config_dropAnimMinDuration)); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 398 | // Fall back to cubic ease out interpolator for the animation if none is specified |
| 399 | TimeInterpolator interpolator = null; |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 400 | if (alphaInterpolator == null || motionInterpolator == null) { |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 401 | interpolator = mCubicEaseOutInterpolator; |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 402 | } |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 403 | |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 404 | // Animate the view |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 405 | final float initAlpha = view.getAlpha(); |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 406 | final float dropViewScale = view.getScaleX(); |
| 407 | AnimatorUpdateListener updateCb = new AnimatorUpdateListener() { |
| 408 | @Override |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 409 | public void onAnimationUpdate(ValueAnimator animation) { |
| 410 | final float percent = (Float) animation.getAnimatedValue(); |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 411 | final int width = view.getMeasuredWidth(); |
| 412 | final int height = view.getMeasuredHeight(); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 413 | |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 414 | float alphaPercent = alphaInterpolator == null ? percent : |
| 415 | alphaInterpolator.getInterpolation(percent); |
| 416 | float motionPercent = motionInterpolator == null ? percent : |
| 417 | motionInterpolator.getInterpolation(percent); |
| 418 | |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 419 | 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 Cohen | 28f852a | 2013-10-15 14:34:05 -0700 | [diff] [blame] | 431 | int anchorAdjust = mAnchorView == null ? 0 : (int) (mAnchorView.getScaleX() * |
| 432 | (mAnchorViewInitialScrollX - mAnchorView.getScrollX())); |
| 433 | |
| 434 | int xPos = x - mDropView.getScrollX() + anchorAdjust; |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 435 | 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 Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 442 | } |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 443 | }; |
| 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 Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 453 | |
| 454 | // Show the drop view if it was previously hidden |
| 455 | mDropView = view; |
| 456 | mDropView.cancelAnimation(); |
Vadim Tryshev | d6c8e7e | 2015-07-08 13:40:14 -0700 | [diff] [blame] | 457 | mDropView.requestLayout(); |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 458 | |
| 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 Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 471 | mDropAnim.addListener(new AnimatorListenerAdapter() { |
| 472 | public void onAnimationEnd(Animator animation) { |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 473 | if (onCompleteRunnable != null) { |
| 474 | onCompleteRunnable.run(); |
| 475 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 476 | switch (animationEndStyle) { |
| 477 | case ANIMATION_END_DISAPPEAR: |
| 478 | clearAnimatedView(); |
| 479 | break; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 480 | case ANIMATION_END_REMAIN_VISIBLE: |
| 481 | break; |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 482 | } |
Winson Chung | 7dd3b52 | 2018-05-14 10:07:15 -0700 | [diff] [blame^] | 483 | mDropAnim = null; |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 484 | } |
| 485 | }); |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 486 | mDropAnim.start(); |
| 487 | } |
| 488 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 489 | public void clearAnimatedView() { |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 490 | if (mDropAnim != null) { |
| 491 | mDropAnim.cancel(); |
| 492 | } |
Winson Chung | 7dd3b52 | 2018-05-14 10:07:15 -0700 | [diff] [blame^] | 493 | mDropAnim = null; |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 494 | if (mDropView != null) { |
Adam Cohen | 2d783ce | 2014-04-07 14:11:48 -0700 | [diff] [blame] | 495 | mDragController.onDeferredEndDrag(mDropView); |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 496 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 497 | mDropView = null; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 498 | invalidate(); |
| 499 | } |
| 500 | |
| 501 | public View getAnimatedView() { |
| 502 | return mDropView; |
| 503 | } |
| 504 | |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 505 | @Override |
Jon Miranda | 758d504 | 2017-11-08 14:38:23 -0800 | [diff] [blame] | 506 | public void onViewAdded(View child) { |
| 507 | super.onViewAdded(child); |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 508 | updateChildIndices(); |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 509 | UiFactory.onLauncherStateOrFocusChanged(mActivity); |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | @Override |
Jon Miranda | 758d504 | 2017-11-08 14:38:23 -0800 | [diff] [blame] | 513 | public void onViewRemoved(View child) { |
| 514 | super.onViewRemoved(child); |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 515 | updateChildIndices(); |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 516 | UiFactory.onLauncherStateOrFocusChanged(mActivity); |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 519 | @Override |
| 520 | public void bringChildToFront(View child) { |
| 521 | super.bringChildToFront(child); |
| 522 | updateChildIndices(); |
| 523 | } |
| 524 | |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 525 | private void updateChildIndices() { |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 526 | mTopViewIndex = -1; |
Jorim Jaggi | 55bd972 | 2014-01-16 15:30:42 -0800 | [diff] [blame] | 527 | int childCount = getChildCount(); |
| 528 | for (int i = 0; i < childCount; i++) { |
Adam Cohen | b670f19 | 2014-04-08 15:34:17 -0700 | [diff] [blame] | 529 | if (getChildAt(i) instanceof DragView) { |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 530 | mTopViewIndex = i; |
Jorim Jaggi | 55bd972 | 2014-01-16 15:30:42 -0800 | [diff] [blame] | 531 | } |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 532 | } |
Adam Cohen | 2d783ce | 2014-04-07 14:11:48 -0700 | [diff] [blame] | 533 | mChildCountOnLastUpdate = childCount; |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | @Override |
| 537 | protected int getChildDrawingOrder(int childCount, int i) { |
Adam Cohen | 2d783ce | 2014-04-07 14:11:48 -0700 | [diff] [blame] | 538 | 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 Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 546 | // i represents the current draw iteration |
| 547 | if (mTopViewIndex == -1) { |
| 548 | // in general we do nothing |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 549 | return i; |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 550 | } 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 Jaggi | 55bd972 | 2014-01-16 15:30:42 -0800 | [diff] [blame] | 554 | return i; |
Adam Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 555 | } else { |
Adam Cohen | 432609a | 2014-03-13 17:03:22 -0700 | [diff] [blame] | 556 | // 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 Cohen | 21b4110 | 2011-11-01 17:29:52 -0700 | [diff] [blame] | 559 | } |
| 560 | } |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 561 | |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 562 | @Override |
| 563 | protected void dispatchDraw(Canvas canvas) { |
Sunny Goyal | 0fa93bc | 2015-05-13 11:23:24 -0700 | [diff] [blame] | 564 | // Draw the background below children. |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 565 | mScrim.draw(canvas); |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 566 | mFocusIndicatorHelper.draw(canvas); |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 567 | super.dispatchDraw(canvas); |
Adam Cohen | 8cc0550 | 2014-08-22 18:32:15 -0700 | [diff] [blame] | 568 | } |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 569 | |
| 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 Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 585 | } |