blob: fd4df5247e73930512e102e19736d5ad405a1cf0 [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;
Sunny Goyal95899162019-03-27 16:03:06 -070033import com.android.launcher3.WorkspaceItemInfo;
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.
vadimt5bc87ec2019-02-07 19:44:08 -0800130 if (!fromKeyboard && itemSupportsAccessibleDrag(item)) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800131 info.addAction(mActions.get(MOVE));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700132
133 if (item.container >= 0) {
134 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700135 } else if (item instanceof LauncherAppWidgetInfo) {
136 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
137 info.addAction(mActions.get(RESIZE));
138 }
Sunny Goyal9ae77772015-04-29 16:30:23 -0700139 }
Adam Cohen6e92f052016-06-07 14:30:10 -0700140 }
141
142 if ((item instanceof AppInfo) || (item instanceof PendingAddItemInfo)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800143 info.addAction(mActions.get(ADD_TO_WORKSPACE));
144 }
145 }
146
vadimt5bc87ec2019-02-07 19:44:08 -0800147 private boolean itemSupportsAccessibleDrag(ItemInfo item) {
Sunny Goyal95899162019-03-27 16:03:06 -0700148 if (item instanceof WorkspaceItemInfo) {
vadimt5bc87ec2019-02-07 19:44:08 -0800149 // Support the action unless the item is in a context menu.
150 return item.screenId >= 0;
151 }
152 return (item instanceof LauncherAppWidgetInfo)
153 || (item instanceof FolderInfo);
154 }
155
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800156 @Override
157 public boolean performAccessibilityAction(View host, int action, Bundle args) {
158 if ((host.getTag() instanceof ItemInfo)
159 && performAction(host, (ItemInfo) host.getTag(), action)) {
160 return true;
161 }
162 return super.performAccessibilityAction(host, action, args);
163 }
164
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700165 public boolean performAction(final View host, final ItemInfo item, int action) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700166 if (action == MOVE) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800167 beginAccessibleDrag(host, item);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800168 } else if (action == ADD_TO_WORKSPACE) {
Sunny Goyala9116722015-04-29 13:55:58 -0700169 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700170 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700171 mLauncher.getStateManager().goToState(NORMAL, true, new Runnable() {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800172
173 @Override
Sunny Goyala9116722015-04-29 13:55:58 -0700174 public void run() {
175 if (item instanceof AppInfo) {
Sunny Goyal95899162019-03-27 16:03:06 -0700176 WorkspaceItemInfo info = ((AppInfo) item).makeWorkspaceItem();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800177 mLauncher.getModelWriter().addItemToDatabase(info,
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700178 Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700179 screenId, coordinates[0], coordinates[1]);
180
181 ArrayList<ItemInfo> itemList = new ArrayList<>();
182 itemList.add(info);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700183 mLauncher.bindItems(itemList, true);
Sunny Goyala9116722015-04-29 13:55:58 -0700184 } else if (item instanceof PendingAddItemInfo) {
185 PendingAddItemInfo info = (PendingAddItemInfo) item;
186 Workspace workspace = mLauncher.getWorkspace();
187 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700188 mLauncher.addPendingItem(info, Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700189 screenId, coordinates, info.spanX, info.spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800190 }
Sunny Goyala9116722015-04-29 13:55:58 -0700191 announceConfirmation(R.string.item_added_to_workspace);
192 }
193 });
194 return true;
Sunny Goyal9ae77772015-04-29 16:30:23 -0700195 } else if (action == MOVE_TO_WORKSPACE) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700196 Folder folder = Folder.getOpen(mLauncher);
197 folder.close(true);
Sunny Goyal95899162019-03-27 16:03:06 -0700198 WorkspaceItemInfo info = (WorkspaceItemInfo) item;
Sunny Goyalc52ba712016-04-05 15:59:05 -0700199 folder.getInfo().remove(info, false);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700200
201 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700202 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800203 mLauncher.getModelWriter().moveItemInDatabase(info,
Sunny Goyal9ae77772015-04-29 16:30:23 -0700204 LauncherSettings.Favorites.CONTAINER_DESKTOP,
205 screenId, coordinates[0], coordinates[1]);
206
207 // Bind the item in next frame so that if a new workspace page was created,
208 // it will get laid out.
209 new Handler().post(new Runnable() {
210
211 @Override
212 public void run() {
213 ArrayList<ItemInfo> itemList = new ArrayList<>();
214 itemList.add(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700215 mLauncher.bindItems(itemList, true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700216 announceConfirmation(R.string.item_moved);
217 }
218 });
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700219 } else if (action == RESIZE) {
220 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700221 final IntArray actions = getSupportedResizeActions(host, info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700222 CharSequence[] labels = new CharSequence[actions.size()];
223 for (int i = 0; i < actions.size(); i++) {
224 labels[i] = mLauncher.getText(actions.get(i));
225 }
226
227 new AlertDialog.Builder(mLauncher)
228 .setTitle(R.string.action_resize)
229 .setItems(labels, new DialogInterface.OnClickListener() {
230
231 @Override
232 public void onClick(DialogInterface dialog, int which) {
233 performResizeAction(actions.get(which), host, info);
234 dialog.dismiss();
235 }
236 })
237 .show();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700238 return true;
239 } else if (action == DEEP_SHORTCUTS) {
Tony Wickham540913e2017-01-23 11:47:51 -0800240 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700241 } else {
242 for (ButtonDropTarget dropTarget : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000243 if (dropTarget.supportsAccessibilityDrop(item, host) &&
244 action == dropTarget.getAccessibilityAction()) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700245 dropTarget.onAccessibilityDrop(host, item);
246 return true;
247 }
248 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800249 }
250 return false;
251 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800252
Sunny Goyalefb7e842018-10-04 15:11:00 -0700253 private IntArray getSupportedResizeActions(View host, LauncherAppWidgetInfo info) {
254 IntArray actions = new IntArray();
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700255
Sunny Goyald3d8c952015-06-01 10:09:06 -0700256 AppWidgetProviderInfo providerInfo = ((LauncherAppWidgetHostView) host).getAppWidgetInfo();
257 if (providerInfo == null) {
258 return actions;
259 }
260
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700261 CellLayout layout = (CellLayout) host.getParent().getParent();
262 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_HORIZONTAL) != 0) {
263 if (layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY) ||
264 layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY)) {
265 actions.add(R.string.action_increase_width);
266 }
267
268 if (info.spanX > info.minSpanX && info.spanX > 1) {
269 actions.add(R.string.action_decrease_width);
270 }
271 }
272
273 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_VERTICAL) != 0) {
274 if (layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1) ||
275 layout.isRegionVacant(info.cellX, info.cellY - 1, info.spanX, 1)) {
276 actions.add(R.string.action_increase_height);
277 }
278
279 if (info.spanY > info.minSpanY && info.spanY > 1) {
280 actions.add(R.string.action_decrease_height);
281 }
282 }
283 return actions;
284 }
285
Sunny Goyal316490e2015-06-02 09:38:28 -0700286 @Thunk void performResizeAction(int action, View host, LauncherAppWidgetInfo info) {
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700287 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) host.getLayoutParams();
288 CellLayout layout = (CellLayout) host.getParent().getParent();
289 layout.markCellsAsUnoccupiedForView(host);
290
291 if (action == R.string.action_increase_width) {
292 if (((host.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL)
293 && layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY))
294 || !layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY)) {
295 lp.cellX --;
296 info.cellX --;
297 }
298 lp.cellHSpan ++;
299 info.spanX ++;
300 } else if (action == R.string.action_decrease_width) {
301 lp.cellHSpan --;
302 info.spanX --;
303 } else if (action == R.string.action_increase_height) {
304 if (!layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1)) {
305 lp.cellY --;
306 info.cellY --;
307 }
308 lp.cellVSpan ++;
309 info.spanY ++;
310 } else if (action == R.string.action_decrease_height) {
311 lp.cellVSpan --;
312 info.spanY --;
313 }
314
315 layout.markCellsAsOccupiedForView(host);
316 Rect sizeRange = new Rect();
317 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, sizeRange);
318 ((LauncherAppWidgetHostView) host).updateAppWidgetSize(null,
319 sizeRange.left, sizeRange.top, sizeRange.right, sizeRange.bottom);
320 host.requestLayout();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800321 mLauncher.getModelWriter().updateItemInDatabase(info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700322 announceConfirmation(mLauncher.getString(R.string.widget_resized, info.spanX, info.spanY));
323 }
324
Adam Cohen091440a2015-03-18 14:16:05 -0700325 @Thunk void announceConfirmation(int resId) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800326 announceConfirmation(mLauncher.getResources().getString(resId));
327 }
328
Adam Cohen091440a2015-03-18 14:16:05 -0700329 @Thunk void announceConfirmation(String confirmation) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800330 mLauncher.getDragLayer().announceForAccessibility(confirmation);
331
332 }
333
334 public boolean isInAccessibleDrag() {
335 return mDragInfo != null;
336 }
337
338 public DragInfo getDragInfo() {
339 return mDragInfo;
340 }
341
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700342 /**
343 * @param clickedTarget the actual view that was clicked
344 * @param dropLocation relative to {@param clickedTarget}. If provided, its center is used
345 * as the actual drop location otherwise the views center is used.
346 */
347 public void handleAccessibleDrop(View clickedTarget, Rect dropLocation,
Adam Cohenc9735cf2015-01-23 16:11:55 -0800348 String confirmation) {
349 if (!isInAccessibleDrag()) return;
350
351 int[] loc = new int[2];
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700352 if (dropLocation == null) {
353 loc[0] = clickedTarget.getWidth() / 2;
354 loc[1] = clickedTarget.getHeight() / 2;
355 } else {
356 loc[0] = dropLocation.centerX();
357 loc[1] = dropLocation.centerY();
358 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800359
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700360 mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(clickedTarget, loc);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800361 mLauncher.getDragController().completeAccessibleDrag(loc);
362
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700363 if (!TextUtils.isEmpty(confirmation)) {
364 announceConfirmation(confirmation);
365 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800366 }
367
368 public void beginAccessibleDrag(View item, ItemInfo info) {
369 mDragInfo = new DragInfo();
370 mDragInfo.info = info;
371 mDragInfo.item = item;
372 mDragInfo.dragType = DragType.ICON;
373 if (info instanceof FolderInfo) {
374 mDragInfo.dragType = DragType.FOLDER;
375 } else if (info instanceof LauncherAppWidgetInfo) {
376 mDragInfo.dragType = DragType.WIDGET;
377 }
378
Adam Cohenc9735cf2015-01-23 16:11:55 -0800379 Rect pos = new Rect();
380 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(item, pos);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800381 mLauncher.getDragController().prepareAccessibleDrag(pos.centerX(), pos.centerY());
Sunny Goyal94b510c2016-08-16 15:36:48 -0700382 mLauncher.getDragController().addDragListener(this);
383
384 DragOptions options = new DragOptions();
385 options.isAccessibleDrag = true;
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800386 ItemLongClickListener.beginDrag(item, mLauncher, info, options);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800387 }
388
Sunny Goyal45478022015-06-08 16:52:41 -0700389 @Override
Sunny Goyal94b510c2016-08-16 15:36:48 -0700390 public void onDragStart(DragObject dragObject, DragOptions options) {
Sunny Goyal45478022015-06-08 16:52:41 -0700391 // No-op
Adam Cohenc9735cf2015-01-23 16:11:55 -0800392 }
393
Sunny Goyal45478022015-06-08 16:52:41 -0700394 @Override
395 public void onDragEnd() {
396 mLauncher.getDragController().removeDragListener(this);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800397 mDragInfo = null;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800398 }
Sunny Goyala9116722015-04-29 13:55:58 -0700399
400 /**
401 * Find empty space on the workspace and returns the screenId.
402 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700403 protected int findSpaceOnWorkspace(ItemInfo info, int[] outCoordinates) {
Sunny Goyala9116722015-04-29 13:55:58 -0700404 Workspace workspace = mLauncher.getWorkspace();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700405 IntArray workspaceScreens = workspace.getScreenOrder();
406 int screenId;
Sunny Goyala9116722015-04-29 13:55:58 -0700407
408 // First check if there is space on the current screen.
409 int screenIndex = workspace.getCurrentPage();
410 screenId = workspaceScreens.get(screenIndex);
411 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex);
412
413 boolean found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700414 screenIndex = 0;
Sunny Goyala9116722015-04-29 13:55:58 -0700415 while (!found && screenIndex < workspaceScreens.size()) {
416 screenId = workspaceScreens.get(screenIndex);
417 layout = (CellLayout) workspace.getPageAt(screenIndex);
418 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
419 screenIndex++;
420 }
421
422 if (found) {
423 return screenId;
424 }
425
426 workspace.addExtraEmptyScreen();
427 screenId = workspace.commitExtraEmptyScreen();
428 layout = workspace.getScreenWithId(screenId);
429 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
430
431 if (!found) {
432 Log.wtf(TAG, "Not enough space on an empty screen");
433 }
434 return screenId;
435 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800436}