blob: 6f7f8e6a293181f533d06b8d2fce48f6e256e7d1 [file] [log] [blame]
Sunny Goyal83a8f042015-05-19 12:52:12 -07001package com.android.launcher3.accessibility;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002
Pinyao Ting8a739f92019-09-12 11:56:18 -07003import static android.view.accessibility.AccessibilityNodeInfo.ACTION_LONG_CLICK;
4
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07005import static com.android.launcher3.LauncherState.NORMAL;
6
Sunny Goyal9ca9c132015-04-29 14:57:22 -07007import android.app.AlertDialog;
8import android.appwidget.AppWidgetProviderInfo;
9import android.content.DialogInterface;
Sunny Goyal9b180102020-03-11 10:02:29 -070010import android.graphics.Point;
Adam Cohenc9735cf2015-01-23 16:11:55 -080011import android.graphics.Rect;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080012import android.os.Bundle;
Sunny Goyal9ae77772015-04-29 16:30:23 -070013import android.os.Handler;
Sunny Goyal1a70cef2015-04-22 11:29:51 -070014import android.text.TextUtils;
Sunny Goyala9116722015-04-29 13:55:58 -070015import android.util.Log;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080016import android.util.SparseArray;
17import android.view.View;
18import android.view.View.AccessibilityDelegate;
19import android.view.accessibility.AccessibilityNodeInfo;
20import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;
21
Sunny Goyal83a8f042015-05-19 12:52:12 -070022import com.android.launcher3.AppInfo;
23import com.android.launcher3.AppWidgetResizeFrame;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070024import com.android.launcher3.BubbleTextView;
Sunny Goyal0236d0b2017-10-24 14:54:30 -070025import com.android.launcher3.ButtonDropTarget;
Sunny Goyal83a8f042015-05-19 12:52:12 -070026import com.android.launcher3.CellLayout;
Sunny Goyal94b510c2016-08-16 15:36:48 -070027import com.android.launcher3.DropTarget.DragObject;
Sunny Goyal83a8f042015-05-19 12:52:12 -070028import com.android.launcher3.FolderInfo;
Sunny Goyal83a8f042015-05-19 12:52:12 -070029import com.android.launcher3.ItemInfo;
30import com.android.launcher3.Launcher;
Sunny Goyal83a8f042015-05-19 12:52:12 -070031import com.android.launcher3.LauncherAppWidgetInfo;
Sunny Goyal83a8f042015-05-19 12:52:12 -070032import com.android.launcher3.LauncherSettings;
Sunny Goyal3e3f44c2017-10-23 17:14:52 -070033import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyal83a8f042015-05-19 12:52:12 -070034import com.android.launcher3.PendingAddItemInfo;
35import com.android.launcher3.R;
Sunny Goyal83a8f042015-05-19 12:52:12 -070036import com.android.launcher3.Workspace;
Pinyao Ting8a739f92019-09-12 11:56:18 -070037import com.android.launcher3.WorkspaceItemInfo;
Vadim Tryshevfedca432015-08-19 17:55:02 -070038import com.android.launcher3.dragndrop.DragController.DragListener;
Sunny Goyala52ecb02016-12-16 15:04:51 -080039import com.android.launcher3.dragndrop.DragOptions;
40import com.android.launcher3.folder.Folder;
Pinyao Ting8a739f92019-09-12 11:56:18 -070041import com.android.launcher3.keyboard.CustomActionsPopup;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070042import com.android.launcher3.notification.NotificationListener;
Mario Bertschlerc06af332017-03-28 12:23:22 -070043import com.android.launcher3.popup.PopupContainerWithArrow;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070044import com.android.launcher3.touch.ItemLongClickListener;
Sunny Goyalefb7e842018-10-04 15:11:00 -070045import com.android.launcher3.util.IntArray;
Pinyao Ting49a3e692019-07-26 12:28:38 -070046import com.android.launcher3.util.ShortcutUtil;
Adam Cohen091440a2015-03-18 14:16:05 -070047import com.android.launcher3.util.Thunk;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070048import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080049
50import java.util.ArrayList;
51
Sunny Goyal45478022015-06-08 16:52:41 -070052public class LauncherAccessibilityDelegate extends AccessibilityDelegate implements DragListener {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080053
Sunny Goyala9116722015-04-29 13:55:58 -070054 private static final String TAG = "LauncherAccessibilityDelegate";
55
Sunny Goyal0236d0b2017-10-24 14:54:30 -070056 public static final int REMOVE = R.id.action_remove;
Sunny Goyal0236d0b2017-10-24 14:54:30 -070057 public static final int UNINSTALL = R.id.action_uninstall;
Samuel Fufa5cf3e862020-02-03 20:22:54 -080058 public static final int DISMISS_PREDICTION = R.id.action_dismiss_prediction;
Winson Chung1054d4e2018-03-05 19:39:21 +000059 public static final int RECONFIGURE = R.id.action_reconfigure;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070060 protected static final int ADD_TO_WORKSPACE = R.id.action_add_to_workspace;
61 protected static final int MOVE = R.id.action_move;
62 protected static final int MOVE_TO_WORKSPACE = R.id.action_move_to_workspace;
63 protected static final int RESIZE = R.id.action_resize;
Sunny Goyal66b24572016-09-21 15:57:55 -070064 public static final int DEEP_SHORTCUTS = R.id.action_deep_shortcuts;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070065 public static final int SHORTCUTS_AND_NOTIFICATIONS = R.id.action_shortcuts_and_notifications;
Adam Cohenc9735cf2015-01-23 16:11:55 -080066
Sunny Goyale9b651e2015-04-24 11:44:51 -070067 public enum DragType {
Adam Cohenc9735cf2015-01-23 16:11:55 -080068 ICON,
69 FOLDER,
70 WIDGET
71 }
72
73 public static class DragInfo {
Sunny Goyale9b651e2015-04-24 11:44:51 -070074 public DragType dragType;
75 public ItemInfo info;
76 public View item;
Adam Cohenc9735cf2015-01-23 16:11:55 -080077 }
78
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070079 protected final SparseArray<AccessibilityAction> mActions = new SparseArray<>();
Adam Cohen091440a2015-03-18 14:16:05 -070080 @Thunk final Launcher mLauncher;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080081
Sunny Goyale9b651e2015-04-24 11:44:51 -070082 private DragInfo mDragInfo = null;
Sunny Goyale9b651e2015-04-24 11:44:51 -070083
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080084 public LauncherAccessibilityDelegate(Launcher launcher) {
85 mLauncher = launcher;
86
87 mActions.put(REMOVE, new AccessibilityAction(REMOVE,
Tony Wickham9aae47f2015-10-01 13:04:22 -070088 launcher.getText(R.string.remove_drop_target_label)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080089 mActions.put(UNINSTALL, new AccessibilityAction(UNINSTALL,
Tony Wickham9aae47f2015-10-01 13:04:22 -070090 launcher.getText(R.string.uninstall_drop_target_label)));
Samuel Fufa5cf3e862020-02-03 20:22:54 -080091 mActions.put(DISMISS_PREDICTION, new AccessibilityAction(DISMISS_PREDICTION,
92 launcher.getText(R.string.dismiss_prediction_label)));
Winson Chung1054d4e2018-03-05 19:39:21 +000093 mActions.put(RECONFIGURE, new AccessibilityAction(RECONFIGURE,
94 launcher.getText(R.string.gadget_setup_text)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080095 mActions.put(ADD_TO_WORKSPACE, new AccessibilityAction(ADD_TO_WORKSPACE,
96 launcher.getText(R.string.action_add_to_workspace)));
Adam Cohenc9735cf2015-01-23 16:11:55 -080097 mActions.put(MOVE, new AccessibilityAction(MOVE,
98 launcher.getText(R.string.action_move)));
Sunny Goyal9ae77772015-04-29 16:30:23 -070099 mActions.put(MOVE_TO_WORKSPACE, new AccessibilityAction(MOVE_TO_WORKSPACE,
100 launcher.getText(R.string.action_move_to_workspace)));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700101 mActions.put(RESIZE, new AccessibilityAction(RESIZE,
102 launcher.getText(R.string.action_resize)));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700103 mActions.put(DEEP_SHORTCUTS, new AccessibilityAction(DEEP_SHORTCUTS,
104 launcher.getText(R.string.action_deep_shortcut)));
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700105 mActions.put(SHORTCUTS_AND_NOTIFICATIONS, new AccessibilityAction(DEEP_SHORTCUTS,
106 launcher.getText(R.string.shortcuts_menu_with_notifications_description)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800107 }
108
Mehdi Alizadeh8588fd02018-04-27 14:08:04 -0700109 public void addAccessibilityAction(int action, int actionLabel) {
110 mActions.put(action, new AccessibilityAction(action, mLauncher.getText(actionLabel)));
111 }
112
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800113 @Override
114 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
115 super.onInitializeAccessibilityNodeInfo(host, info);
Sunny Goyal66b24572016-09-21 15:57:55 -0700116 addSupportedActions(host, info, false);
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700117 }
118
Sunny Goyal66b24572016-09-21 15:57:55 -0700119 public void addSupportedActions(View host, AccessibilityNodeInfo info, boolean fromKeyboard) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800120 if (!(host.getTag() instanceof ItemInfo)) return;
121 ItemInfo item = (ItemInfo) host.getTag();
122
Sunny Goyal66b24572016-09-21 15:57:55 -0700123 // If the request came from keyboard, do not add custom shortcuts as that is already
124 // exposed as a direct shortcut
Pinyao Ting49a3e692019-07-26 12:28:38 -0700125 if (!fromKeyboard && ShortcutUtil.supportsShortcuts(item)) {
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700126 info.addAction(mActions.get(NotificationListener.getInstanceIfConnected() != null
127 ? SHORTCUTS_AND_NOTIFICATIONS : DEEP_SHORTCUTS));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700128 }
129
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700130 for (ButtonDropTarget target : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000131 if (target.supportsAccessibilityDrop(item, host)) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700132 info.addAction(mActions.get(target.getAccessibilityAction()));
133 }
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700134 }
135
Sunny Goyal66b24572016-09-21 15:57:55 -0700136 // Do not add move actions for keyboard request as this uses virtual nodes.
vadimt5bc87ec2019-02-07 19:44:08 -0800137 if (!fromKeyboard && itemSupportsAccessibleDrag(item)) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800138 info.addAction(mActions.get(MOVE));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700139
140 if (item.container >= 0) {
141 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700142 } else if (item instanceof LauncherAppWidgetInfo) {
143 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
144 info.addAction(mActions.get(RESIZE));
145 }
Sunny Goyal9ae77772015-04-29 16:30:23 -0700146 }
Adam Cohen6e92f052016-06-07 14:30:10 -0700147 }
148
149 if ((item instanceof AppInfo) || (item instanceof PendingAddItemInfo)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800150 info.addAction(mActions.get(ADD_TO_WORKSPACE));
151 }
152 }
153
vadimt5bc87ec2019-02-07 19:44:08 -0800154 private boolean itemSupportsAccessibleDrag(ItemInfo item) {
Sunny Goyal95899162019-03-27 16:03:06 -0700155 if (item instanceof WorkspaceItemInfo) {
vadimt5bc87ec2019-02-07 19:44:08 -0800156 // Support the action unless the item is in a context menu.
157 return item.screenId >= 0;
158 }
159 return (item instanceof LauncherAppWidgetInfo)
160 || (item instanceof FolderInfo);
161 }
162
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800163 @Override
164 public boolean performAccessibilityAction(View host, int action, Bundle args) {
165 if ((host.getTag() instanceof ItemInfo)
166 && performAction(host, (ItemInfo) host.getTag(), action)) {
167 return true;
168 }
169 return super.performAccessibilityAction(host, action, args);
170 }
171
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700172 public boolean performAction(final View host, final ItemInfo item, int action) {
Adam Cohen732b1d42020-01-30 10:46:52 -0800173 if (action == ACTION_LONG_CLICK) {
174 if (ShortcutUtil.isDeepShortcut(item)) {
175 CustomActionsPopup popup = new CustomActionsPopup(mLauncher, host);
176 if (popup.canShow()) {
177 popup.show();
178 return true;
179 }
180 } else if (host instanceof BubbleTextView) {
181 // Long press should be consumed for workspace items, and it should invoke the
182 // Shortcuts / Notifications / Actions pop-up menu, and not start a drag as the
183 // standard long press path does.
184 PopupContainerWithArrow.showForIcon((BubbleTextView) host);
Pinyao Ting8a739f92019-09-12 11:56:18 -0700185 return true;
186 }
187 }
Adam Cohen732b1d42020-01-30 10:46:52 -0800188
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700189 if (action == MOVE) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800190 beginAccessibleDrag(host, item);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800191 } else if (action == ADD_TO_WORKSPACE) {
Sunny Goyala9116722015-04-29 13:55:58 -0700192 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700193 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700194 mLauncher.getStateManager().goToState(NORMAL, true, new Runnable() {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800195
196 @Override
Sunny Goyala9116722015-04-29 13:55:58 -0700197 public void run() {
198 if (item instanceof AppInfo) {
Sunny Goyal95899162019-03-27 16:03:06 -0700199 WorkspaceItemInfo info = ((AppInfo) item).makeWorkspaceItem();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800200 mLauncher.getModelWriter().addItemToDatabase(info,
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700201 Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700202 screenId, coordinates[0], coordinates[1]);
203
204 ArrayList<ItemInfo> itemList = new ArrayList<>();
205 itemList.add(info);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700206 mLauncher.bindItems(itemList, true);
Pinyao Tingc9074272019-11-11 11:51:44 -0800207 announceConfirmation(R.string.item_added_to_workspace);
Sunny Goyala9116722015-04-29 13:55:58 -0700208 } else if (item instanceof PendingAddItemInfo) {
209 PendingAddItemInfo info = (PendingAddItemInfo) item;
210 Workspace workspace = mLauncher.getWorkspace();
211 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700212 mLauncher.addPendingItem(info, Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700213 screenId, coordinates, info.spanX, info.spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800214 }
Sunny Goyala9116722015-04-29 13:55:58 -0700215 }
216 });
217 return true;
Sunny Goyal9ae77772015-04-29 16:30:23 -0700218 } else if (action == MOVE_TO_WORKSPACE) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700219 Folder folder = Folder.getOpen(mLauncher);
220 folder.close(true);
Sunny Goyal95899162019-03-27 16:03:06 -0700221 WorkspaceItemInfo info = (WorkspaceItemInfo) item;
Sunny Goyalc52ba712016-04-05 15:59:05 -0700222 folder.getInfo().remove(info, false);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700223
224 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700225 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800226 mLauncher.getModelWriter().moveItemInDatabase(info,
Sunny Goyal9ae77772015-04-29 16:30:23 -0700227 LauncherSettings.Favorites.CONTAINER_DESKTOP,
228 screenId, coordinates[0], coordinates[1]);
229
230 // Bind the item in next frame so that if a new workspace page was created,
231 // it will get laid out.
232 new Handler().post(new Runnable() {
233
234 @Override
235 public void run() {
236 ArrayList<ItemInfo> itemList = new ArrayList<>();
237 itemList.add(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700238 mLauncher.bindItems(itemList, true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700239 announceConfirmation(R.string.item_moved);
240 }
241 });
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700242 } else if (action == RESIZE) {
243 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700244 final IntArray actions = getSupportedResizeActions(host, info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700245 CharSequence[] labels = new CharSequence[actions.size()];
246 for (int i = 0; i < actions.size(); i++) {
247 labels[i] = mLauncher.getText(actions.get(i));
248 }
249
250 new AlertDialog.Builder(mLauncher)
251 .setTitle(R.string.action_resize)
252 .setItems(labels, new DialogInterface.OnClickListener() {
253
254 @Override
255 public void onClick(DialogInterface dialog, int which) {
256 performResizeAction(actions.get(which), host, info);
257 dialog.dismiss();
258 }
259 })
260 .show();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700261 return true;
262 } else if (action == DEEP_SHORTCUTS) {
Tony Wickham540913e2017-01-23 11:47:51 -0800263 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700264 } else {
265 for (ButtonDropTarget dropTarget : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000266 if (dropTarget.supportsAccessibilityDrop(item, host) &&
267 action == dropTarget.getAccessibilityAction()) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700268 dropTarget.onAccessibilityDrop(host, item);
269 return true;
270 }
271 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800272 }
273 return false;
274 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800275
Sunny Goyalefb7e842018-10-04 15:11:00 -0700276 private IntArray getSupportedResizeActions(View host, LauncherAppWidgetInfo info) {
277 IntArray actions = new IntArray();
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700278
Sunny Goyald3d8c952015-06-01 10:09:06 -0700279 AppWidgetProviderInfo providerInfo = ((LauncherAppWidgetHostView) host).getAppWidgetInfo();
280 if (providerInfo == null) {
281 return actions;
282 }
283
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700284 CellLayout layout = (CellLayout) host.getParent().getParent();
285 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_HORIZONTAL) != 0) {
286 if (layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY) ||
287 layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY)) {
288 actions.add(R.string.action_increase_width);
289 }
290
291 if (info.spanX > info.minSpanX && info.spanX > 1) {
292 actions.add(R.string.action_decrease_width);
293 }
294 }
295
296 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_VERTICAL) != 0) {
297 if (layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1) ||
298 layout.isRegionVacant(info.cellX, info.cellY - 1, info.spanX, 1)) {
299 actions.add(R.string.action_increase_height);
300 }
301
302 if (info.spanY > info.minSpanY && info.spanY > 1) {
303 actions.add(R.string.action_decrease_height);
304 }
305 }
306 return actions;
307 }
308
Sunny Goyal316490e2015-06-02 09:38:28 -0700309 @Thunk void performResizeAction(int action, View host, LauncherAppWidgetInfo info) {
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700310 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) host.getLayoutParams();
311 CellLayout layout = (CellLayout) host.getParent().getParent();
312 layout.markCellsAsUnoccupiedForView(host);
313
314 if (action == R.string.action_increase_width) {
315 if (((host.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL)
316 && layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY))
317 || !layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY)) {
318 lp.cellX --;
319 info.cellX --;
320 }
321 lp.cellHSpan ++;
322 info.spanX ++;
323 } else if (action == R.string.action_decrease_width) {
324 lp.cellHSpan --;
325 info.spanX --;
326 } else if (action == R.string.action_increase_height) {
327 if (!layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1)) {
328 lp.cellY --;
329 info.cellY --;
330 }
331 lp.cellVSpan ++;
332 info.spanY ++;
333 } else if (action == R.string.action_decrease_height) {
334 lp.cellVSpan --;
335 info.spanY --;
336 }
337
338 layout.markCellsAsOccupiedForView(host);
339 Rect sizeRange = new Rect();
340 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, sizeRange);
341 ((LauncherAppWidgetHostView) host).updateAppWidgetSize(null,
342 sizeRange.left, sizeRange.top, sizeRange.right, sizeRange.bottom);
343 host.requestLayout();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800344 mLauncher.getModelWriter().updateItemInDatabase(info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700345 announceConfirmation(mLauncher.getString(R.string.widget_resized, info.spanX, info.spanY));
346 }
347
Adam Cohen091440a2015-03-18 14:16:05 -0700348 @Thunk void announceConfirmation(int resId) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800349 announceConfirmation(mLauncher.getResources().getString(resId));
350 }
351
Adam Cohen091440a2015-03-18 14:16:05 -0700352 @Thunk void announceConfirmation(String confirmation) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800353 mLauncher.getDragLayer().announceForAccessibility(confirmation);
354
355 }
356
357 public boolean isInAccessibleDrag() {
358 return mDragInfo != null;
359 }
360
361 public DragInfo getDragInfo() {
362 return mDragInfo;
363 }
364
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700365 /**
366 * @param clickedTarget the actual view that was clicked
367 * @param dropLocation relative to {@param clickedTarget}. If provided, its center is used
368 * as the actual drop location otherwise the views center is used.
369 */
370 public void handleAccessibleDrop(View clickedTarget, Rect dropLocation,
Adam Cohenc9735cf2015-01-23 16:11:55 -0800371 String confirmation) {
372 if (!isInAccessibleDrag()) return;
373
374 int[] loc = new int[2];
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700375 if (dropLocation == null) {
376 loc[0] = clickedTarget.getWidth() / 2;
377 loc[1] = clickedTarget.getHeight() / 2;
378 } else {
379 loc[0] = dropLocation.centerX();
380 loc[1] = dropLocation.centerY();
381 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800382
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700383 mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(clickedTarget, loc);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800384 mLauncher.getDragController().completeAccessibleDrag(loc);
385
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700386 if (!TextUtils.isEmpty(confirmation)) {
387 announceConfirmation(confirmation);
388 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800389 }
390
391 public void beginAccessibleDrag(View item, ItemInfo info) {
392 mDragInfo = new DragInfo();
393 mDragInfo.info = info;
394 mDragInfo.item = item;
395 mDragInfo.dragType = DragType.ICON;
396 if (info instanceof FolderInfo) {
397 mDragInfo.dragType = DragType.FOLDER;
398 } else if (info instanceof LauncherAppWidgetInfo) {
399 mDragInfo.dragType = DragType.WIDGET;
400 }
401
Adam Cohenc9735cf2015-01-23 16:11:55 -0800402 Rect pos = new Rect();
403 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(item, pos);
Sunny Goyal94b510c2016-08-16 15:36:48 -0700404 mLauncher.getDragController().addDragListener(this);
405
406 DragOptions options = new DragOptions();
407 options.isAccessibleDrag = true;
Sunny Goyal9b180102020-03-11 10:02:29 -0700408 options.simulatedDndStartPoint = new Point(pos.centerX(), pos.centerY());
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800409 ItemLongClickListener.beginDrag(item, mLauncher, info, options);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800410 }
411
Sunny Goyal45478022015-06-08 16:52:41 -0700412 @Override
Sunny Goyal94b510c2016-08-16 15:36:48 -0700413 public void onDragStart(DragObject dragObject, DragOptions options) {
Sunny Goyal45478022015-06-08 16:52:41 -0700414 // No-op
Adam Cohenc9735cf2015-01-23 16:11:55 -0800415 }
416
Sunny Goyal45478022015-06-08 16:52:41 -0700417 @Override
418 public void onDragEnd() {
419 mLauncher.getDragController().removeDragListener(this);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800420 mDragInfo = null;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800421 }
Sunny Goyala9116722015-04-29 13:55:58 -0700422
423 /**
424 * Find empty space on the workspace and returns the screenId.
425 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700426 protected int findSpaceOnWorkspace(ItemInfo info, int[] outCoordinates) {
Sunny Goyala9116722015-04-29 13:55:58 -0700427 Workspace workspace = mLauncher.getWorkspace();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700428 IntArray workspaceScreens = workspace.getScreenOrder();
429 int screenId;
Sunny Goyala9116722015-04-29 13:55:58 -0700430
431 // First check if there is space on the current screen.
432 int screenIndex = workspace.getCurrentPage();
433 screenId = workspaceScreens.get(screenIndex);
434 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex);
435
436 boolean found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700437 screenIndex = 0;
Sunny Goyala9116722015-04-29 13:55:58 -0700438 while (!found && screenIndex < workspaceScreens.size()) {
439 screenId = workspaceScreens.get(screenIndex);
440 layout = (CellLayout) workspace.getPageAt(screenIndex);
441 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
442 screenIndex++;
443 }
444
445 if (found) {
446 return screenId;
447 }
448
449 workspace.addExtraEmptyScreen();
450 screenId = workspace.commitExtraEmptyScreen();
451 layout = workspace.getScreenWithId(screenId);
452 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
453
454 if (!found) {
455 Log.wtf(TAG, "Not enough space on an empty screen");
456 }
457 return screenId;
458 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800459}