blob: 84edb3dac0ab34c03fba8ba2aca34315d5a539a0 [file] [log] [blame]
Sunny Goyal83a8f042015-05-19 12:52:12 -07001package com.android.launcher3.accessibility;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07003import static com.android.launcher3.LauncherState.NORMAL;
4
Sunny Goyal9ca9c132015-04-29 14:57:22 -07005import android.app.AlertDialog;
6import android.appwidget.AppWidgetProviderInfo;
7import android.content.DialogInterface;
Adam Cohenc9735cf2015-01-23 16:11:55 -08008import android.graphics.Rect;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08009import android.os.Bundle;
Sunny Goyal9ae77772015-04-29 16:30:23 -070010import android.os.Handler;
Sunny Goyal1a70cef2015-04-22 11:29:51 -070011import android.text.TextUtils;
Sunny Goyala9116722015-04-29 13:55:58 -070012import android.util.Log;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080013import android.util.SparseArray;
14import android.view.View;
15import android.view.View.AccessibilityDelegate;
16import android.view.accessibility.AccessibilityNodeInfo;
17import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;
18
Sunny Goyal83a8f042015-05-19 12:52:12 -070019import com.android.launcher3.AppInfo;
20import com.android.launcher3.AppWidgetResizeFrame;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070021import com.android.launcher3.BubbleTextView;
Sunny Goyal0236d0b2017-10-24 14:54:30 -070022import com.android.launcher3.ButtonDropTarget;
Sunny Goyal83a8f042015-05-19 12:52:12 -070023import com.android.launcher3.CellLayout;
Sunny Goyal94b510c2016-08-16 15:36:48 -070024import com.android.launcher3.DropTarget.DragObject;
Sunny Goyal83a8f042015-05-19 12:52:12 -070025import com.android.launcher3.FolderInfo;
Sunny Goyal83a8f042015-05-19 12:52:12 -070026import com.android.launcher3.ItemInfo;
27import com.android.launcher3.Launcher;
Sunny Goyal83a8f042015-05-19 12:52:12 -070028import com.android.launcher3.LauncherAppWidgetInfo;
Sunny Goyal83a8f042015-05-19 12:52:12 -070029import com.android.launcher3.LauncherSettings;
Sunny Goyal3e3f44c2017-10-23 17:14:52 -070030import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyal83a8f042015-05-19 12:52:12 -070031import com.android.launcher3.PendingAddItemInfo;
32import com.android.launcher3.R;
33import com.android.launcher3.ShortcutInfo;
Sunny Goyal83a8f042015-05-19 12:52:12 -070034import com.android.launcher3.Workspace;
Vadim Tryshevfedca432015-08-19 17:55:02 -070035import com.android.launcher3.dragndrop.DragController.DragListener;
Sunny Goyala52ecb02016-12-16 15:04:51 -080036import com.android.launcher3.dragndrop.DragOptions;
37import com.android.launcher3.folder.Folder;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070038import com.android.launcher3.notification.NotificationListener;
Mario Bertschlerc06af332017-03-28 12:23:22 -070039import com.android.launcher3.popup.PopupContainerWithArrow;
Tony18c4aa42017-05-10 21:23:57 -050040import com.android.launcher3.shortcuts.DeepShortcutManager;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070041import com.android.launcher3.touch.ItemLongClickListener;
Sunny Goyalefb7e842018-10-04 15:11:00 -070042import com.android.launcher3.util.IntArray;
Adam Cohen091440a2015-03-18 14:16:05 -070043import com.android.launcher3.util.Thunk;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070044import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080045
46import java.util.ArrayList;
47
Sunny Goyal45478022015-06-08 16:52:41 -070048public class LauncherAccessibilityDelegate extends AccessibilityDelegate implements DragListener {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080049
Sunny Goyala9116722015-04-29 13:55:58 -070050 private static final String TAG = "LauncherAccessibilityDelegate";
51
Sunny Goyal0236d0b2017-10-24 14:54:30 -070052 public static final int REMOVE = R.id.action_remove;
Sunny Goyal0236d0b2017-10-24 14:54:30 -070053 public static final int UNINSTALL = R.id.action_uninstall;
Winson Chung1054d4e2018-03-05 19:39:21 +000054 public static final int RECONFIGURE = R.id.action_reconfigure;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070055 protected static final int ADD_TO_WORKSPACE = R.id.action_add_to_workspace;
56 protected static final int MOVE = R.id.action_move;
57 protected static final int MOVE_TO_WORKSPACE = R.id.action_move_to_workspace;
58 protected static final int RESIZE = R.id.action_resize;
Sunny Goyal66b24572016-09-21 15:57:55 -070059 public static final int DEEP_SHORTCUTS = R.id.action_deep_shortcuts;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070060 public static final int SHORTCUTS_AND_NOTIFICATIONS = R.id.action_shortcuts_and_notifications;
Adam Cohenc9735cf2015-01-23 16:11:55 -080061
Sunny Goyale9b651e2015-04-24 11:44:51 -070062 public enum DragType {
Adam Cohenc9735cf2015-01-23 16:11:55 -080063 ICON,
64 FOLDER,
65 WIDGET
66 }
67
68 public static class DragInfo {
Sunny Goyale9b651e2015-04-24 11:44:51 -070069 public DragType dragType;
70 public ItemInfo info;
71 public View item;
Adam Cohenc9735cf2015-01-23 16:11:55 -080072 }
73
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070074 protected final SparseArray<AccessibilityAction> mActions = new SparseArray<>();
Adam Cohen091440a2015-03-18 14:16:05 -070075 @Thunk final Launcher mLauncher;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080076
Sunny Goyale9b651e2015-04-24 11:44:51 -070077 private DragInfo mDragInfo = null;
Sunny Goyale9b651e2015-04-24 11:44:51 -070078
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080079 public LauncherAccessibilityDelegate(Launcher launcher) {
80 mLauncher = launcher;
81
82 mActions.put(REMOVE, new AccessibilityAction(REMOVE,
Tony Wickham9aae47f2015-10-01 13:04:22 -070083 launcher.getText(R.string.remove_drop_target_label)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080084 mActions.put(UNINSTALL, new AccessibilityAction(UNINSTALL,
Tony Wickham9aae47f2015-10-01 13:04:22 -070085 launcher.getText(R.string.uninstall_drop_target_label)));
Winson Chung1054d4e2018-03-05 19:39:21 +000086 mActions.put(RECONFIGURE, new AccessibilityAction(RECONFIGURE,
87 launcher.getText(R.string.gadget_setup_text)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080088 mActions.put(ADD_TO_WORKSPACE, new AccessibilityAction(ADD_TO_WORKSPACE,
89 launcher.getText(R.string.action_add_to_workspace)));
Adam Cohenc9735cf2015-01-23 16:11:55 -080090 mActions.put(MOVE, new AccessibilityAction(MOVE,
91 launcher.getText(R.string.action_move)));
Sunny Goyal9ae77772015-04-29 16:30:23 -070092 mActions.put(MOVE_TO_WORKSPACE, new AccessibilityAction(MOVE_TO_WORKSPACE,
93 launcher.getText(R.string.action_move_to_workspace)));
Sunny Goyal9ca9c132015-04-29 14:57:22 -070094 mActions.put(RESIZE, new AccessibilityAction(RESIZE,
95 launcher.getText(R.string.action_resize)));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070096 mActions.put(DEEP_SHORTCUTS, new AccessibilityAction(DEEP_SHORTCUTS,
97 launcher.getText(R.string.action_deep_shortcut)));
Vadim Trysheva50d99f2018-05-04 17:58:29 -070098 mActions.put(SHORTCUTS_AND_NOTIFICATIONS, new AccessibilityAction(DEEP_SHORTCUTS,
99 launcher.getText(R.string.shortcuts_menu_with_notifications_description)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800100 }
101
Mehdi Alizadeh8588fd02018-04-27 14:08:04 -0700102 public void addAccessibilityAction(int action, int actionLabel) {
103 mActions.put(action, new AccessibilityAction(action, mLauncher.getText(actionLabel)));
104 }
105
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800106 @Override
107 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
108 super.onInitializeAccessibilityNodeInfo(host, info);
Sunny Goyal66b24572016-09-21 15:57:55 -0700109 addSupportedActions(host, info, false);
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700110 }
111
Sunny Goyal66b24572016-09-21 15:57:55 -0700112 public void addSupportedActions(View host, AccessibilityNodeInfo info, boolean fromKeyboard) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800113 if (!(host.getTag() instanceof ItemInfo)) return;
114 ItemInfo item = (ItemInfo) host.getTag();
115
Sunny Goyal66b24572016-09-21 15:57:55 -0700116 // If the request came from keyboard, do not add custom shortcuts as that is already
117 // exposed as a direct shortcut
Tony18c4aa42017-05-10 21:23:57 -0500118 if (!fromKeyboard && DeepShortcutManager.supportsShortcuts(item)) {
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700119 info.addAction(mActions.get(NotificationListener.getInstanceIfConnected() != null
120 ? SHORTCUTS_AND_NOTIFICATIONS : DEEP_SHORTCUTS));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700121 }
122
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700123 for (ButtonDropTarget target : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000124 if (target.supportsAccessibilityDrop(item, host)) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700125 info.addAction(mActions.get(target.getAccessibilityAction()));
126 }
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700127 }
128
Sunny Goyal66b24572016-09-21 15:57:55 -0700129 // Do not add move actions for keyboard request as this uses virtual nodes.
130 if (!fromKeyboard && ((item instanceof ShortcutInfo)
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800131 || (item instanceof LauncherAppWidgetInfo)
Sunny Goyal66b24572016-09-21 15:57:55 -0700132 || (item instanceof FolderInfo))) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800133 info.addAction(mActions.get(MOVE));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700134
135 if (item.container >= 0) {
136 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700137 } else if (item instanceof LauncherAppWidgetInfo) {
138 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
139 info.addAction(mActions.get(RESIZE));
140 }
Sunny Goyal9ae77772015-04-29 16:30:23 -0700141 }
Adam Cohen6e92f052016-06-07 14:30:10 -0700142 }
143
144 if ((item instanceof AppInfo) || (item instanceof PendingAddItemInfo)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800145 info.addAction(mActions.get(ADD_TO_WORKSPACE));
146 }
147 }
148
149 @Override
150 public boolean performAccessibilityAction(View host, int action, Bundle args) {
151 if ((host.getTag() instanceof ItemInfo)
152 && performAction(host, (ItemInfo) host.getTag(), action)) {
153 return true;
154 }
155 return super.performAccessibilityAction(host, action, args);
156 }
157
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700158 public boolean performAction(final View host, final ItemInfo item, int action) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700159 if (action == MOVE) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800160 beginAccessibleDrag(host, item);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800161 } else if (action == ADD_TO_WORKSPACE) {
Sunny Goyala9116722015-04-29 13:55:58 -0700162 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700163 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700164 mLauncher.getStateManager().goToState(NORMAL, true, new Runnable() {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800165
166 @Override
Sunny Goyala9116722015-04-29 13:55:58 -0700167 public void run() {
168 if (item instanceof AppInfo) {
169 ShortcutInfo info = ((AppInfo) item).makeShortcut();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800170 mLauncher.getModelWriter().addItemToDatabase(info,
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700171 Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700172 screenId, coordinates[0], coordinates[1]);
173
174 ArrayList<ItemInfo> itemList = new ArrayList<>();
175 itemList.add(info);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700176 mLauncher.bindItems(itemList, true);
Sunny Goyala9116722015-04-29 13:55:58 -0700177 } else if (item instanceof PendingAddItemInfo) {
178 PendingAddItemInfo info = (PendingAddItemInfo) item;
179 Workspace workspace = mLauncher.getWorkspace();
180 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700181 mLauncher.addPendingItem(info, Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700182 screenId, coordinates, info.spanX, info.spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800183 }
Sunny Goyala9116722015-04-29 13:55:58 -0700184 announceConfirmation(R.string.item_added_to_workspace);
185 }
186 });
187 return true;
Sunny Goyal9ae77772015-04-29 16:30:23 -0700188 } else if (action == MOVE_TO_WORKSPACE) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700189 Folder folder = Folder.getOpen(mLauncher);
190 folder.close(true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700191 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyalc52ba712016-04-05 15:59:05 -0700192 folder.getInfo().remove(info, false);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700193
194 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700195 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800196 mLauncher.getModelWriter().moveItemInDatabase(info,
Sunny Goyal9ae77772015-04-29 16:30:23 -0700197 LauncherSettings.Favorites.CONTAINER_DESKTOP,
198 screenId, coordinates[0], coordinates[1]);
199
200 // Bind the item in next frame so that if a new workspace page was created,
201 // it will get laid out.
202 new Handler().post(new Runnable() {
203
204 @Override
205 public void run() {
206 ArrayList<ItemInfo> itemList = new ArrayList<>();
207 itemList.add(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700208 mLauncher.bindItems(itemList, true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700209 announceConfirmation(R.string.item_moved);
210 }
211 });
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700212 } else if (action == RESIZE) {
213 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700214 final IntArray actions = getSupportedResizeActions(host, info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700215 CharSequence[] labels = new CharSequence[actions.size()];
216 for (int i = 0; i < actions.size(); i++) {
217 labels[i] = mLauncher.getText(actions.get(i));
218 }
219
220 new AlertDialog.Builder(mLauncher)
221 .setTitle(R.string.action_resize)
222 .setItems(labels, new DialogInterface.OnClickListener() {
223
224 @Override
225 public void onClick(DialogInterface dialog, int which) {
226 performResizeAction(actions.get(which), host, info);
227 dialog.dismiss();
228 }
229 })
230 .show();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700231 return true;
232 } else if (action == DEEP_SHORTCUTS) {
Tony Wickham540913e2017-01-23 11:47:51 -0800233 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700234 } else {
235 for (ButtonDropTarget dropTarget : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000236 if (dropTarget.supportsAccessibilityDrop(item, host) &&
237 action == dropTarget.getAccessibilityAction()) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700238 dropTarget.onAccessibilityDrop(host, item);
239 return true;
240 }
241 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800242 }
243 return false;
244 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800245
Sunny Goyalefb7e842018-10-04 15:11:00 -0700246 private IntArray getSupportedResizeActions(View host, LauncherAppWidgetInfo info) {
247 IntArray actions = new IntArray();
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700248
Sunny Goyald3d8c952015-06-01 10:09:06 -0700249 AppWidgetProviderInfo providerInfo = ((LauncherAppWidgetHostView) host).getAppWidgetInfo();
250 if (providerInfo == null) {
251 return actions;
252 }
253
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700254 CellLayout layout = (CellLayout) host.getParent().getParent();
255 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_HORIZONTAL) != 0) {
256 if (layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY) ||
257 layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY)) {
258 actions.add(R.string.action_increase_width);
259 }
260
261 if (info.spanX > info.minSpanX && info.spanX > 1) {
262 actions.add(R.string.action_decrease_width);
263 }
264 }
265
266 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_VERTICAL) != 0) {
267 if (layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1) ||
268 layout.isRegionVacant(info.cellX, info.cellY - 1, info.spanX, 1)) {
269 actions.add(R.string.action_increase_height);
270 }
271
272 if (info.spanY > info.minSpanY && info.spanY > 1) {
273 actions.add(R.string.action_decrease_height);
274 }
275 }
276 return actions;
277 }
278
Sunny Goyal316490e2015-06-02 09:38:28 -0700279 @Thunk void performResizeAction(int action, View host, LauncherAppWidgetInfo info) {
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700280 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) host.getLayoutParams();
281 CellLayout layout = (CellLayout) host.getParent().getParent();
282 layout.markCellsAsUnoccupiedForView(host);
283
284 if (action == R.string.action_increase_width) {
285 if (((host.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL)
286 && layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY))
287 || !layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY)) {
288 lp.cellX --;
289 info.cellX --;
290 }
291 lp.cellHSpan ++;
292 info.spanX ++;
293 } else if (action == R.string.action_decrease_width) {
294 lp.cellHSpan --;
295 info.spanX --;
296 } else if (action == R.string.action_increase_height) {
297 if (!layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1)) {
298 lp.cellY --;
299 info.cellY --;
300 }
301 lp.cellVSpan ++;
302 info.spanY ++;
303 } else if (action == R.string.action_decrease_height) {
304 lp.cellVSpan --;
305 info.spanY --;
306 }
307
308 layout.markCellsAsOccupiedForView(host);
309 Rect sizeRange = new Rect();
310 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, sizeRange);
311 ((LauncherAppWidgetHostView) host).updateAppWidgetSize(null,
312 sizeRange.left, sizeRange.top, sizeRange.right, sizeRange.bottom);
313 host.requestLayout();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800314 mLauncher.getModelWriter().updateItemInDatabase(info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700315 announceConfirmation(mLauncher.getString(R.string.widget_resized, info.spanX, info.spanY));
316 }
317
Adam Cohen091440a2015-03-18 14:16:05 -0700318 @Thunk void announceConfirmation(int resId) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800319 announceConfirmation(mLauncher.getResources().getString(resId));
320 }
321
Adam Cohen091440a2015-03-18 14:16:05 -0700322 @Thunk void announceConfirmation(String confirmation) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800323 mLauncher.getDragLayer().announceForAccessibility(confirmation);
324
325 }
326
327 public boolean isInAccessibleDrag() {
328 return mDragInfo != null;
329 }
330
331 public DragInfo getDragInfo() {
332 return mDragInfo;
333 }
334
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700335 /**
336 * @param clickedTarget the actual view that was clicked
337 * @param dropLocation relative to {@param clickedTarget}. If provided, its center is used
338 * as the actual drop location otherwise the views center is used.
339 */
340 public void handleAccessibleDrop(View clickedTarget, Rect dropLocation,
Adam Cohenc9735cf2015-01-23 16:11:55 -0800341 String confirmation) {
342 if (!isInAccessibleDrag()) return;
343
344 int[] loc = new int[2];
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700345 if (dropLocation == null) {
346 loc[0] = clickedTarget.getWidth() / 2;
347 loc[1] = clickedTarget.getHeight() / 2;
348 } else {
349 loc[0] = dropLocation.centerX();
350 loc[1] = dropLocation.centerY();
351 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800352
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700353 mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(clickedTarget, loc);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800354 mLauncher.getDragController().completeAccessibleDrag(loc);
355
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700356 if (!TextUtils.isEmpty(confirmation)) {
357 announceConfirmation(confirmation);
358 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800359 }
360
361 public void beginAccessibleDrag(View item, ItemInfo info) {
362 mDragInfo = new DragInfo();
363 mDragInfo.info = info;
364 mDragInfo.item = item;
365 mDragInfo.dragType = DragType.ICON;
366 if (info instanceof FolderInfo) {
367 mDragInfo.dragType = DragType.FOLDER;
368 } else if (info instanceof LauncherAppWidgetInfo) {
369 mDragInfo.dragType = DragType.WIDGET;
370 }
371
Adam Cohenc9735cf2015-01-23 16:11:55 -0800372 Rect pos = new Rect();
373 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(item, pos);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800374 mLauncher.getDragController().prepareAccessibleDrag(pos.centerX(), pos.centerY());
Sunny Goyal94b510c2016-08-16 15:36:48 -0700375 mLauncher.getDragController().addDragListener(this);
376
377 DragOptions options = new DragOptions();
378 options.isAccessibleDrag = true;
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800379 ItemLongClickListener.beginDrag(item, mLauncher, info, options);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800380 }
381
Sunny Goyal45478022015-06-08 16:52:41 -0700382 @Override
Sunny Goyal94b510c2016-08-16 15:36:48 -0700383 public void onDragStart(DragObject dragObject, DragOptions options) {
Sunny Goyal45478022015-06-08 16:52:41 -0700384 // No-op
Adam Cohenc9735cf2015-01-23 16:11:55 -0800385 }
386
Sunny Goyal45478022015-06-08 16:52:41 -0700387 @Override
388 public void onDragEnd() {
389 mLauncher.getDragController().removeDragListener(this);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800390 mDragInfo = null;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800391 }
Sunny Goyala9116722015-04-29 13:55:58 -0700392
393 /**
394 * Find empty space on the workspace and returns the screenId.
395 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700396 protected int findSpaceOnWorkspace(ItemInfo info, int[] outCoordinates) {
Sunny Goyala9116722015-04-29 13:55:58 -0700397 Workspace workspace = mLauncher.getWorkspace();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700398 IntArray workspaceScreens = workspace.getScreenOrder();
399 int screenId;
Sunny Goyala9116722015-04-29 13:55:58 -0700400
401 // First check if there is space on the current screen.
402 int screenIndex = workspace.getCurrentPage();
403 screenId = workspaceScreens.get(screenIndex);
404 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex);
405
406 boolean found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700407 screenIndex = 0;
Sunny Goyala9116722015-04-29 13:55:58 -0700408 while (!found && screenIndex < workspaceScreens.size()) {
409 screenId = workspaceScreens.get(screenIndex);
410 layout = (CellLayout) workspace.getPageAt(screenIndex);
411 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
412 screenIndex++;
413 }
414
415 if (found) {
416 return screenId;
417 }
418
419 workspace.addExtraEmptyScreen();
420 screenId = workspace.commitExtraEmptyScreen();
421 layout = workspace.getScreenWithId(screenId);
422 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
423
424 if (!found) {
425 Log.wtf(TAG, "Not enough space on an empty screen");
426 }
427 return screenId;
428 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800429}