blob: 0c1303b64be88686b918b585972a65c19caff565 [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;
Pinyao Ting49a3e692019-07-26 12:28:38 -070043import com.android.launcher3.util.ShortcutUtil;
Adam Cohen091440a2015-03-18 14:16:05 -070044import com.android.launcher3.util.Thunk;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070045import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080046
47import java.util.ArrayList;
48
Sunny Goyal45478022015-06-08 16:52:41 -070049public class LauncherAccessibilityDelegate extends AccessibilityDelegate implements DragListener {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080050
Sunny Goyala9116722015-04-29 13:55:58 -070051 private static final String TAG = "LauncherAccessibilityDelegate";
52
Sunny Goyal0236d0b2017-10-24 14:54:30 -070053 public static final int REMOVE = R.id.action_remove;
Sunny Goyal0236d0b2017-10-24 14:54:30 -070054 public static final int UNINSTALL = R.id.action_uninstall;
Winson Chung1054d4e2018-03-05 19:39:21 +000055 public static final int RECONFIGURE = R.id.action_reconfigure;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070056 protected static final int ADD_TO_WORKSPACE = R.id.action_add_to_workspace;
57 protected static final int MOVE = R.id.action_move;
58 protected static final int MOVE_TO_WORKSPACE = R.id.action_move_to_workspace;
59 protected static final int RESIZE = R.id.action_resize;
Sunny Goyal66b24572016-09-21 15:57:55 -070060 public static final int DEEP_SHORTCUTS = R.id.action_deep_shortcuts;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070061 public static final int SHORTCUTS_AND_NOTIFICATIONS = R.id.action_shortcuts_and_notifications;
Adam Cohenc9735cf2015-01-23 16:11:55 -080062
Sunny Goyale9b651e2015-04-24 11:44:51 -070063 public enum DragType {
Adam Cohenc9735cf2015-01-23 16:11:55 -080064 ICON,
65 FOLDER,
66 WIDGET
67 }
68
69 public static class DragInfo {
Sunny Goyale9b651e2015-04-24 11:44:51 -070070 public DragType dragType;
71 public ItemInfo info;
72 public View item;
Adam Cohenc9735cf2015-01-23 16:11:55 -080073 }
74
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070075 protected final SparseArray<AccessibilityAction> mActions = new SparseArray<>();
Adam Cohen091440a2015-03-18 14:16:05 -070076 @Thunk final Launcher mLauncher;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080077
Sunny Goyale9b651e2015-04-24 11:44:51 -070078 private DragInfo mDragInfo = null;
Sunny Goyale9b651e2015-04-24 11:44:51 -070079
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080080 public LauncherAccessibilityDelegate(Launcher launcher) {
81 mLauncher = launcher;
82
83 mActions.put(REMOVE, new AccessibilityAction(REMOVE,
Tony Wickham9aae47f2015-10-01 13:04:22 -070084 launcher.getText(R.string.remove_drop_target_label)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080085 mActions.put(UNINSTALL, new AccessibilityAction(UNINSTALL,
Tony Wickham9aae47f2015-10-01 13:04:22 -070086 launcher.getText(R.string.uninstall_drop_target_label)));
Winson Chung1054d4e2018-03-05 19:39:21 +000087 mActions.put(RECONFIGURE, new AccessibilityAction(RECONFIGURE,
88 launcher.getText(R.string.gadget_setup_text)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080089 mActions.put(ADD_TO_WORKSPACE, new AccessibilityAction(ADD_TO_WORKSPACE,
90 launcher.getText(R.string.action_add_to_workspace)));
Adam Cohenc9735cf2015-01-23 16:11:55 -080091 mActions.put(MOVE, new AccessibilityAction(MOVE,
92 launcher.getText(R.string.action_move)));
Sunny Goyal9ae77772015-04-29 16:30:23 -070093 mActions.put(MOVE_TO_WORKSPACE, new AccessibilityAction(MOVE_TO_WORKSPACE,
94 launcher.getText(R.string.action_move_to_workspace)));
Sunny Goyal9ca9c132015-04-29 14:57:22 -070095 mActions.put(RESIZE, new AccessibilityAction(RESIZE,
96 launcher.getText(R.string.action_resize)));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070097 mActions.put(DEEP_SHORTCUTS, new AccessibilityAction(DEEP_SHORTCUTS,
98 launcher.getText(R.string.action_deep_shortcut)));
Vadim Trysheva50d99f2018-05-04 17:58:29 -070099 mActions.put(SHORTCUTS_AND_NOTIFICATIONS, new AccessibilityAction(DEEP_SHORTCUTS,
100 launcher.getText(R.string.shortcuts_menu_with_notifications_description)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800101 }
102
Mehdi Alizadeh8588fd02018-04-27 14:08:04 -0700103 public void addAccessibilityAction(int action, int actionLabel) {
104 mActions.put(action, new AccessibilityAction(action, mLauncher.getText(actionLabel)));
105 }
106
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800107 @Override
108 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
109 super.onInitializeAccessibilityNodeInfo(host, info);
Sunny Goyal66b24572016-09-21 15:57:55 -0700110 addSupportedActions(host, info, false);
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700111 }
112
Sunny Goyal66b24572016-09-21 15:57:55 -0700113 public void addSupportedActions(View host, AccessibilityNodeInfo info, boolean fromKeyboard) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800114 if (!(host.getTag() instanceof ItemInfo)) return;
115 ItemInfo item = (ItemInfo) host.getTag();
116
Sunny Goyal66b24572016-09-21 15:57:55 -0700117 // If the request came from keyboard, do not add custom shortcuts as that is already
118 // exposed as a direct shortcut
Pinyao Ting49a3e692019-07-26 12:28:38 -0700119 if (!fromKeyboard && ShortcutUtil.supportsShortcuts(item)) {
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700120 info.addAction(mActions.get(NotificationListener.getInstanceIfConnected() != null
121 ? SHORTCUTS_AND_NOTIFICATIONS : DEEP_SHORTCUTS));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700122 }
123
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700124 for (ButtonDropTarget target : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000125 if (target.supportsAccessibilityDrop(item, host)) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700126 info.addAction(mActions.get(target.getAccessibilityAction()));
127 }
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700128 }
129
Sunny Goyal66b24572016-09-21 15:57:55 -0700130 // Do not add move actions for keyboard request as this uses virtual nodes.
vadimt5bc87ec2019-02-07 19:44:08 -0800131 if (!fromKeyboard && itemSupportsAccessibleDrag(item)) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800132 info.addAction(mActions.get(MOVE));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700133
134 if (item.container >= 0) {
135 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700136 } else if (item instanceof LauncherAppWidgetInfo) {
137 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
138 info.addAction(mActions.get(RESIZE));
139 }
Sunny Goyal9ae77772015-04-29 16:30:23 -0700140 }
Adam Cohen6e92f052016-06-07 14:30:10 -0700141 }
142
143 if ((item instanceof AppInfo) || (item instanceof PendingAddItemInfo)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800144 info.addAction(mActions.get(ADD_TO_WORKSPACE));
145 }
146 }
147
vadimt5bc87ec2019-02-07 19:44:08 -0800148 private boolean itemSupportsAccessibleDrag(ItemInfo item) {
Sunny Goyal95899162019-03-27 16:03:06 -0700149 if (item instanceof WorkspaceItemInfo) {
vadimt5bc87ec2019-02-07 19:44:08 -0800150 // Support the action unless the item is in a context menu.
151 return item.screenId >= 0;
152 }
153 return (item instanceof LauncherAppWidgetInfo)
154 || (item instanceof FolderInfo);
155 }
156
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800157 @Override
158 public boolean performAccessibilityAction(View host, int action, Bundle args) {
159 if ((host.getTag() instanceof ItemInfo)
160 && performAction(host, (ItemInfo) host.getTag(), action)) {
161 return true;
162 }
163 return super.performAccessibilityAction(host, action, args);
164 }
165
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700166 public boolean performAction(final View host, final ItemInfo item, int action) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700167 if (action == MOVE) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800168 beginAccessibleDrag(host, item);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800169 } else if (action == ADD_TO_WORKSPACE) {
Sunny Goyala9116722015-04-29 13:55:58 -0700170 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700171 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700172 mLauncher.getStateManager().goToState(NORMAL, true, new Runnable() {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800173
174 @Override
Sunny Goyala9116722015-04-29 13:55:58 -0700175 public void run() {
176 if (item instanceof AppInfo) {
Sunny Goyal95899162019-03-27 16:03:06 -0700177 WorkspaceItemInfo info = ((AppInfo) item).makeWorkspaceItem();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800178 mLauncher.getModelWriter().addItemToDatabase(info,
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700179 Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700180 screenId, coordinates[0], coordinates[1]);
181
182 ArrayList<ItemInfo> itemList = new ArrayList<>();
183 itemList.add(info);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700184 mLauncher.bindItems(itemList, true);
Sunny Goyala9116722015-04-29 13:55:58 -0700185 } else if (item instanceof PendingAddItemInfo) {
186 PendingAddItemInfo info = (PendingAddItemInfo) item;
187 Workspace workspace = mLauncher.getWorkspace();
188 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700189 mLauncher.addPendingItem(info, Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700190 screenId, coordinates, info.spanX, info.spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800191 }
Sunny Goyala9116722015-04-29 13:55:58 -0700192 announceConfirmation(R.string.item_added_to_workspace);
193 }
194 });
195 return true;
Sunny Goyal9ae77772015-04-29 16:30:23 -0700196 } else if (action == MOVE_TO_WORKSPACE) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700197 Folder folder = Folder.getOpen(mLauncher);
198 folder.close(true);
Sunny Goyal95899162019-03-27 16:03:06 -0700199 WorkspaceItemInfo info = (WorkspaceItemInfo) item;
Sunny Goyalc52ba712016-04-05 15:59:05 -0700200 folder.getInfo().remove(info, false);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700201
202 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700203 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800204 mLauncher.getModelWriter().moveItemInDatabase(info,
Sunny Goyal9ae77772015-04-29 16:30:23 -0700205 LauncherSettings.Favorites.CONTAINER_DESKTOP,
206 screenId, coordinates[0], coordinates[1]);
207
208 // Bind the item in next frame so that if a new workspace page was created,
209 // it will get laid out.
210 new Handler().post(new Runnable() {
211
212 @Override
213 public void run() {
214 ArrayList<ItemInfo> itemList = new ArrayList<>();
215 itemList.add(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700216 mLauncher.bindItems(itemList, true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700217 announceConfirmation(R.string.item_moved);
218 }
219 });
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700220 } else if (action == RESIZE) {
221 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700222 final IntArray actions = getSupportedResizeActions(host, info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700223 CharSequence[] labels = new CharSequence[actions.size()];
224 for (int i = 0; i < actions.size(); i++) {
225 labels[i] = mLauncher.getText(actions.get(i));
226 }
227
228 new AlertDialog.Builder(mLauncher)
229 .setTitle(R.string.action_resize)
230 .setItems(labels, new DialogInterface.OnClickListener() {
231
232 @Override
233 public void onClick(DialogInterface dialog, int which) {
234 performResizeAction(actions.get(which), host, info);
235 dialog.dismiss();
236 }
237 })
238 .show();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700239 return true;
240 } else if (action == DEEP_SHORTCUTS) {
Tony Wickham540913e2017-01-23 11:47:51 -0800241 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700242 } else {
243 for (ButtonDropTarget dropTarget : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000244 if (dropTarget.supportsAccessibilityDrop(item, host) &&
245 action == dropTarget.getAccessibilityAction()) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700246 dropTarget.onAccessibilityDrop(host, item);
247 return true;
248 }
249 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800250 }
251 return false;
252 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800253
Sunny Goyalefb7e842018-10-04 15:11:00 -0700254 private IntArray getSupportedResizeActions(View host, LauncherAppWidgetInfo info) {
255 IntArray actions = new IntArray();
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700256
Sunny Goyald3d8c952015-06-01 10:09:06 -0700257 AppWidgetProviderInfo providerInfo = ((LauncherAppWidgetHostView) host).getAppWidgetInfo();
258 if (providerInfo == null) {
259 return actions;
260 }
261
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700262 CellLayout layout = (CellLayout) host.getParent().getParent();
263 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_HORIZONTAL) != 0) {
264 if (layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY) ||
265 layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY)) {
266 actions.add(R.string.action_increase_width);
267 }
268
269 if (info.spanX > info.minSpanX && info.spanX > 1) {
270 actions.add(R.string.action_decrease_width);
271 }
272 }
273
274 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_VERTICAL) != 0) {
275 if (layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1) ||
276 layout.isRegionVacant(info.cellX, info.cellY - 1, info.spanX, 1)) {
277 actions.add(R.string.action_increase_height);
278 }
279
280 if (info.spanY > info.minSpanY && info.spanY > 1) {
281 actions.add(R.string.action_decrease_height);
282 }
283 }
284 return actions;
285 }
286
Sunny Goyal316490e2015-06-02 09:38:28 -0700287 @Thunk void performResizeAction(int action, View host, LauncherAppWidgetInfo info) {
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700288 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) host.getLayoutParams();
289 CellLayout layout = (CellLayout) host.getParent().getParent();
290 layout.markCellsAsUnoccupiedForView(host);
291
292 if (action == R.string.action_increase_width) {
293 if (((host.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL)
294 && layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY))
295 || !layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY)) {
296 lp.cellX --;
297 info.cellX --;
298 }
299 lp.cellHSpan ++;
300 info.spanX ++;
301 } else if (action == R.string.action_decrease_width) {
302 lp.cellHSpan --;
303 info.spanX --;
304 } else if (action == R.string.action_increase_height) {
305 if (!layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1)) {
306 lp.cellY --;
307 info.cellY --;
308 }
309 lp.cellVSpan ++;
310 info.spanY ++;
311 } else if (action == R.string.action_decrease_height) {
312 lp.cellVSpan --;
313 info.spanY --;
314 }
315
316 layout.markCellsAsOccupiedForView(host);
317 Rect sizeRange = new Rect();
318 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, sizeRange);
319 ((LauncherAppWidgetHostView) host).updateAppWidgetSize(null,
320 sizeRange.left, sizeRange.top, sizeRange.right, sizeRange.bottom);
321 host.requestLayout();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800322 mLauncher.getModelWriter().updateItemInDatabase(info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700323 announceConfirmation(mLauncher.getString(R.string.widget_resized, info.spanX, info.spanY));
324 }
325
Adam Cohen091440a2015-03-18 14:16:05 -0700326 @Thunk void announceConfirmation(int resId) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800327 announceConfirmation(mLauncher.getResources().getString(resId));
328 }
329
Adam Cohen091440a2015-03-18 14:16:05 -0700330 @Thunk void announceConfirmation(String confirmation) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800331 mLauncher.getDragLayer().announceForAccessibility(confirmation);
332
333 }
334
335 public boolean isInAccessibleDrag() {
336 return mDragInfo != null;
337 }
338
339 public DragInfo getDragInfo() {
340 return mDragInfo;
341 }
342
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700343 /**
344 * @param clickedTarget the actual view that was clicked
345 * @param dropLocation relative to {@param clickedTarget}. If provided, its center is used
346 * as the actual drop location otherwise the views center is used.
347 */
348 public void handleAccessibleDrop(View clickedTarget, Rect dropLocation,
Adam Cohenc9735cf2015-01-23 16:11:55 -0800349 String confirmation) {
350 if (!isInAccessibleDrag()) return;
351
352 int[] loc = new int[2];
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700353 if (dropLocation == null) {
354 loc[0] = clickedTarget.getWidth() / 2;
355 loc[1] = clickedTarget.getHeight() / 2;
356 } else {
357 loc[0] = dropLocation.centerX();
358 loc[1] = dropLocation.centerY();
359 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800360
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700361 mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(clickedTarget, loc);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800362 mLauncher.getDragController().completeAccessibleDrag(loc);
363
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700364 if (!TextUtils.isEmpty(confirmation)) {
365 announceConfirmation(confirmation);
366 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800367 }
368
369 public void beginAccessibleDrag(View item, ItemInfo info) {
370 mDragInfo = new DragInfo();
371 mDragInfo.info = info;
372 mDragInfo.item = item;
373 mDragInfo.dragType = DragType.ICON;
374 if (info instanceof FolderInfo) {
375 mDragInfo.dragType = DragType.FOLDER;
376 } else if (info instanceof LauncherAppWidgetInfo) {
377 mDragInfo.dragType = DragType.WIDGET;
378 }
379
Adam Cohenc9735cf2015-01-23 16:11:55 -0800380 Rect pos = new Rect();
381 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(item, pos);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800382 mLauncher.getDragController().prepareAccessibleDrag(pos.centerX(), pos.centerY());
Sunny Goyal94b510c2016-08-16 15:36:48 -0700383 mLauncher.getDragController().addDragListener(this);
384
385 DragOptions options = new DragOptions();
386 options.isAccessibleDrag = true;
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800387 ItemLongClickListener.beginDrag(item, mLauncher, info, options);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800388 }
389
Sunny Goyal45478022015-06-08 16:52:41 -0700390 @Override
Sunny Goyal94b510c2016-08-16 15:36:48 -0700391 public void onDragStart(DragObject dragObject, DragOptions options) {
Sunny Goyal45478022015-06-08 16:52:41 -0700392 // No-op
Adam Cohenc9735cf2015-01-23 16:11:55 -0800393 }
394
Sunny Goyal45478022015-06-08 16:52:41 -0700395 @Override
396 public void onDragEnd() {
397 mLauncher.getDragController().removeDragListener(this);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800398 mDragInfo = null;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800399 }
Sunny Goyala9116722015-04-29 13:55:58 -0700400
401 /**
402 * Find empty space on the workspace and returns the screenId.
403 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700404 protected int findSpaceOnWorkspace(ItemInfo info, int[] outCoordinates) {
Sunny Goyala9116722015-04-29 13:55:58 -0700405 Workspace workspace = mLauncher.getWorkspace();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700406 IntArray workspaceScreens = workspace.getScreenOrder();
407 int screenId;
Sunny Goyala9116722015-04-29 13:55:58 -0700408
409 // First check if there is space on the current screen.
410 int screenIndex = workspace.getCurrentPage();
411 screenId = workspaceScreens.get(screenIndex);
412 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex);
413
414 boolean found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700415 screenIndex = 0;
Sunny Goyala9116722015-04-29 13:55:58 -0700416 while (!found && screenIndex < workspaceScreens.size()) {
417 screenId = workspaceScreens.get(screenIndex);
418 layout = (CellLayout) workspace.getPageAt(screenIndex);
419 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
420 screenIndex++;
421 }
422
423 if (found) {
424 return screenId;
425 }
426
427 workspace.addExtraEmptyScreen();
428 screenId = workspace.commitExtraEmptyScreen();
429 layout = workspace.getScreenWithId(screenId);
430 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
431
432 if (!found) {
433 Log.wtf(TAG, "Not enough space on an empty screen");
434 }
435 return screenId;
436 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800437}