blob: 0337fd623acb143c4eecfd805937c214fd7bfe21 [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;
Samuel Fufa6eaf9892020-04-01 11:40:40 -070059 public static final int PIN_PREDICTION = R.id.action_pin_prediction;
Winson Chung1054d4e2018-03-05 19:39:21 +000060 public static final int RECONFIGURE = R.id.action_reconfigure;
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070061 protected static final int ADD_TO_WORKSPACE = R.id.action_add_to_workspace;
62 protected static final int MOVE = R.id.action_move;
63 protected static final int MOVE_TO_WORKSPACE = R.id.action_move_to_workspace;
64 protected static final int RESIZE = R.id.action_resize;
Sunny Goyal66b24572016-09-21 15:57:55 -070065 public static final int DEEP_SHORTCUTS = R.id.action_deep_shortcuts;
Vadim Trysheva50d99f2018-05-04 17:58:29 -070066 public static final int SHORTCUTS_AND_NOTIFICATIONS = R.id.action_shortcuts_and_notifications;
Adam Cohenc9735cf2015-01-23 16:11:55 -080067
Sunny Goyale9b651e2015-04-24 11:44:51 -070068 public enum DragType {
Adam Cohenc9735cf2015-01-23 16:11:55 -080069 ICON,
70 FOLDER,
71 WIDGET
72 }
73
74 public static class DragInfo {
Sunny Goyale9b651e2015-04-24 11:44:51 -070075 public DragType dragType;
76 public ItemInfo info;
77 public View item;
Adam Cohenc9735cf2015-01-23 16:11:55 -080078 }
79
Sunny Goyal3ffa64d2016-07-25 13:54:32 -070080 protected final SparseArray<AccessibilityAction> mActions = new SparseArray<>();
Adam Cohen091440a2015-03-18 14:16:05 -070081 @Thunk final Launcher mLauncher;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080082
Sunny Goyale9b651e2015-04-24 11:44:51 -070083 private DragInfo mDragInfo = null;
Sunny Goyale9b651e2015-04-24 11:44:51 -070084
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080085 public LauncherAccessibilityDelegate(Launcher launcher) {
86 mLauncher = launcher;
87
88 mActions.put(REMOVE, new AccessibilityAction(REMOVE,
Tony Wickham9aae47f2015-10-01 13:04:22 -070089 launcher.getText(R.string.remove_drop_target_label)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080090 mActions.put(UNINSTALL, new AccessibilityAction(UNINSTALL,
Tony Wickham9aae47f2015-10-01 13:04:22 -070091 launcher.getText(R.string.uninstall_drop_target_label)));
Samuel Fufa5cf3e862020-02-03 20:22:54 -080092 mActions.put(DISMISS_PREDICTION, new AccessibilityAction(DISMISS_PREDICTION,
93 launcher.getText(R.string.dismiss_prediction_label)));
Winson Chung1054d4e2018-03-05 19:39:21 +000094 mActions.put(RECONFIGURE, new AccessibilityAction(RECONFIGURE,
95 launcher.getText(R.string.gadget_setup_text)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080096 mActions.put(ADD_TO_WORKSPACE, new AccessibilityAction(ADD_TO_WORKSPACE,
97 launcher.getText(R.string.action_add_to_workspace)));
Adam Cohenc9735cf2015-01-23 16:11:55 -080098 mActions.put(MOVE, new AccessibilityAction(MOVE,
99 launcher.getText(R.string.action_move)));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700100 mActions.put(MOVE_TO_WORKSPACE, new AccessibilityAction(MOVE_TO_WORKSPACE,
101 launcher.getText(R.string.action_move_to_workspace)));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700102 mActions.put(RESIZE, new AccessibilityAction(RESIZE,
103 launcher.getText(R.string.action_resize)));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700104 mActions.put(DEEP_SHORTCUTS, new AccessibilityAction(DEEP_SHORTCUTS,
105 launcher.getText(R.string.action_deep_shortcut)));
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700106 mActions.put(SHORTCUTS_AND_NOTIFICATIONS, new AccessibilityAction(DEEP_SHORTCUTS,
107 launcher.getText(R.string.shortcuts_menu_with_notifications_description)));
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800108 }
109
Mehdi Alizadeh8588fd02018-04-27 14:08:04 -0700110 public void addAccessibilityAction(int action, int actionLabel) {
111 mActions.put(action, new AccessibilityAction(action, mLauncher.getText(actionLabel)));
112 }
113
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800114 @Override
115 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
116 super.onInitializeAccessibilityNodeInfo(host, info);
Sunny Goyal66b24572016-09-21 15:57:55 -0700117 addSupportedActions(host, info, false);
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700118 }
119
Sunny Goyal66b24572016-09-21 15:57:55 -0700120 public void addSupportedActions(View host, AccessibilityNodeInfo info, boolean fromKeyboard) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800121 if (!(host.getTag() instanceof ItemInfo)) return;
122 ItemInfo item = (ItemInfo) host.getTag();
123
Samuel Fufa6eaf9892020-04-01 11:40:40 -0700124 if (host instanceof AccessibilityActionHandler) {
125 ((AccessibilityActionHandler) host).addSupportedAccessibilityActions(info);
126 }
127
Sunny Goyal66b24572016-09-21 15:57:55 -0700128 // If the request came from keyboard, do not add custom shortcuts as that is already
129 // exposed as a direct shortcut
Pinyao Ting49a3e692019-07-26 12:28:38 -0700130 if (!fromKeyboard && ShortcutUtil.supportsShortcuts(item)) {
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700131 info.addAction(mActions.get(NotificationListener.getInstanceIfConnected() != null
132 ? SHORTCUTS_AND_NOTIFICATIONS : DEEP_SHORTCUTS));
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700133 }
134
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700135 for (ButtonDropTarget target : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000136 if (target.supportsAccessibilityDrop(item, host)) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700137 info.addAction(mActions.get(target.getAccessibilityAction()));
138 }
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700139 }
140
Sunny Goyal66b24572016-09-21 15:57:55 -0700141 // Do not add move actions for keyboard request as this uses virtual nodes.
vadimt5bc87ec2019-02-07 19:44:08 -0800142 if (!fromKeyboard && itemSupportsAccessibleDrag(item)) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800143 info.addAction(mActions.get(MOVE));
Sunny Goyal9ae77772015-04-29 16:30:23 -0700144
145 if (item.container >= 0) {
146 info.addAction(mActions.get(MOVE_TO_WORKSPACE));
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700147 } else if (item instanceof LauncherAppWidgetInfo) {
148 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
149 info.addAction(mActions.get(RESIZE));
150 }
Sunny Goyal9ae77772015-04-29 16:30:23 -0700151 }
Adam Cohen6e92f052016-06-07 14:30:10 -0700152 }
153
154 if ((item instanceof AppInfo) || (item instanceof PendingAddItemInfo)) {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800155 info.addAction(mActions.get(ADD_TO_WORKSPACE));
156 }
157 }
158
vadimt5bc87ec2019-02-07 19:44:08 -0800159 private boolean itemSupportsAccessibleDrag(ItemInfo item) {
Sunny Goyal95899162019-03-27 16:03:06 -0700160 if (item instanceof WorkspaceItemInfo) {
vadimt5bc87ec2019-02-07 19:44:08 -0800161 // Support the action unless the item is in a context menu.
Samuel Fufa6eaf9892020-04-01 11:40:40 -0700162 return item.screenId >= 0 && item.container != Favorites.CONTAINER_HOTSEAT_PREDICTION;
vadimt5bc87ec2019-02-07 19:44:08 -0800163 }
164 return (item instanceof LauncherAppWidgetInfo)
165 || (item instanceof FolderInfo);
166 }
167
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800168 @Override
169 public boolean performAccessibilityAction(View host, int action, Bundle args) {
170 if ((host.getTag() instanceof ItemInfo)
171 && performAction(host, (ItemInfo) host.getTag(), action)) {
172 return true;
173 }
174 return super.performAccessibilityAction(host, action, args);
175 }
176
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700177 public boolean performAction(final View host, final ItemInfo item, int action) {
Adam Cohen732b1d42020-01-30 10:46:52 -0800178 if (action == ACTION_LONG_CLICK) {
179 if (ShortcutUtil.isDeepShortcut(item)) {
180 CustomActionsPopup popup = new CustomActionsPopup(mLauncher, host);
181 if (popup.canShow()) {
182 popup.show();
183 return true;
184 }
185 } else if (host instanceof BubbleTextView) {
186 // Long press should be consumed for workspace items, and it should invoke the
187 // Shortcuts / Notifications / Actions pop-up menu, and not start a drag as the
188 // standard long press path does.
189 PopupContainerWithArrow.showForIcon((BubbleTextView) host);
Pinyao Ting8a739f92019-09-12 11:56:18 -0700190 return true;
191 }
192 }
Samuel Fufa6eaf9892020-04-01 11:40:40 -0700193 if (host instanceof AccessibilityActionHandler
194 && ((AccessibilityActionHandler) host).performAccessibilityAction(action, item)) {
195 return true;
196 }
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700197 if (action == MOVE) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800198 beginAccessibleDrag(host, item);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800199 } else if (action == ADD_TO_WORKSPACE) {
Sunny Goyala9116722015-04-29 13:55:58 -0700200 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700201 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700202 mLauncher.getStateManager().goToState(NORMAL, true, new Runnable() {
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800203
204 @Override
Sunny Goyala9116722015-04-29 13:55:58 -0700205 public void run() {
206 if (item instanceof AppInfo) {
Sunny Goyal95899162019-03-27 16:03:06 -0700207 WorkspaceItemInfo info = ((AppInfo) item).makeWorkspaceItem();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800208 mLauncher.getModelWriter().addItemToDatabase(info,
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700209 Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700210 screenId, coordinates[0], coordinates[1]);
211
212 ArrayList<ItemInfo> itemList = new ArrayList<>();
213 itemList.add(info);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700214 mLauncher.bindItems(itemList, true);
Pinyao Tingc9074272019-11-11 11:51:44 -0800215 announceConfirmation(R.string.item_added_to_workspace);
Sunny Goyala9116722015-04-29 13:55:58 -0700216 } else if (item instanceof PendingAddItemInfo) {
217 PendingAddItemInfo info = (PendingAddItemInfo) item;
218 Workspace workspace = mLauncher.getWorkspace();
219 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700220 mLauncher.addPendingItem(info, Favorites.CONTAINER_DESKTOP,
Sunny Goyala9116722015-04-29 13:55:58 -0700221 screenId, coordinates, info.spanX, info.spanY);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800222 }
Sunny Goyala9116722015-04-29 13:55:58 -0700223 }
224 });
225 return true;
Sunny Goyal9ae77772015-04-29 16:30:23 -0700226 } else if (action == MOVE_TO_WORKSPACE) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700227 Folder folder = Folder.getOpen(mLauncher);
228 folder.close(true);
Sunny Goyal95899162019-03-27 16:03:06 -0700229 WorkspaceItemInfo info = (WorkspaceItemInfo) item;
Sunny Goyalc52ba712016-04-05 15:59:05 -0700230 folder.getInfo().remove(info, false);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700231
232 final int[] coordinates = new int[2];
Sunny Goyalefb7e842018-10-04 15:11:00 -0700233 final int screenId = findSpaceOnWorkspace(item, coordinates);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800234 mLauncher.getModelWriter().moveItemInDatabase(info,
Sunny Goyal9ae77772015-04-29 16:30:23 -0700235 LauncherSettings.Favorites.CONTAINER_DESKTOP,
236 screenId, coordinates[0], coordinates[1]);
237
238 // Bind the item in next frame so that if a new workspace page was created,
239 // it will get laid out.
240 new Handler().post(new Runnable() {
241
242 @Override
243 public void run() {
244 ArrayList<ItemInfo> itemList = new ArrayList<>();
245 itemList.add(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -0700246 mLauncher.bindItems(itemList, true);
Sunny Goyal9ae77772015-04-29 16:30:23 -0700247 announceConfirmation(R.string.item_moved);
248 }
249 });
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700250 } else if (action == RESIZE) {
251 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) item;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700252 final IntArray actions = getSupportedResizeActions(host, info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700253 CharSequence[] labels = new CharSequence[actions.size()];
254 for (int i = 0; i < actions.size(); i++) {
255 labels[i] = mLauncher.getText(actions.get(i));
256 }
257
258 new AlertDialog.Builder(mLauncher)
259 .setTitle(R.string.action_resize)
260 .setItems(labels, new DialogInterface.OnClickListener() {
261
262 @Override
263 public void onClick(DialogInterface dialog, int which) {
264 performResizeAction(actions.get(which), host, info);
265 dialog.dismiss();
266 }
267 })
268 .show();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700269 return true;
270 } else if (action == DEEP_SHORTCUTS) {
Tony Wickham540913e2017-01-23 11:47:51 -0800271 return PopupContainerWithArrow.showForIcon((BubbleTextView) host) != null;
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700272 } else {
273 for (ButtonDropTarget dropTarget : mLauncher.getDropTargetBar().getDropTargets()) {
Winson Chung1054d4e2018-03-05 19:39:21 +0000274 if (dropTarget.supportsAccessibilityDrop(item, host) &&
275 action == dropTarget.getAccessibilityAction()) {
Sunny Goyal0236d0b2017-10-24 14:54:30 -0700276 dropTarget.onAccessibilityDrop(host, item);
277 return true;
278 }
279 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800280 }
281 return false;
282 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800283
Sunny Goyalefb7e842018-10-04 15:11:00 -0700284 private IntArray getSupportedResizeActions(View host, LauncherAppWidgetInfo info) {
285 IntArray actions = new IntArray();
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700286
Sunny Goyald3d8c952015-06-01 10:09:06 -0700287 AppWidgetProviderInfo providerInfo = ((LauncherAppWidgetHostView) host).getAppWidgetInfo();
288 if (providerInfo == null) {
289 return actions;
290 }
291
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700292 CellLayout layout = (CellLayout) host.getParent().getParent();
293 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_HORIZONTAL) != 0) {
294 if (layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY) ||
295 layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY)) {
296 actions.add(R.string.action_increase_width);
297 }
298
299 if (info.spanX > info.minSpanX && info.spanX > 1) {
300 actions.add(R.string.action_decrease_width);
301 }
302 }
303
304 if ((providerInfo.resizeMode & AppWidgetProviderInfo.RESIZE_VERTICAL) != 0) {
305 if (layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1) ||
306 layout.isRegionVacant(info.cellX, info.cellY - 1, info.spanX, 1)) {
307 actions.add(R.string.action_increase_height);
308 }
309
310 if (info.spanY > info.minSpanY && info.spanY > 1) {
311 actions.add(R.string.action_decrease_height);
312 }
313 }
314 return actions;
315 }
316
Sunny Goyal316490e2015-06-02 09:38:28 -0700317 @Thunk void performResizeAction(int action, View host, LauncherAppWidgetInfo info) {
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700318 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) host.getLayoutParams();
319 CellLayout layout = (CellLayout) host.getParent().getParent();
320 layout.markCellsAsUnoccupiedForView(host);
321
322 if (action == R.string.action_increase_width) {
323 if (((host.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL)
324 && layout.isRegionVacant(info.cellX - 1, info.cellY, 1, info.spanY))
325 || !layout.isRegionVacant(info.cellX + info.spanX, info.cellY, 1, info.spanY)) {
326 lp.cellX --;
327 info.cellX --;
328 }
329 lp.cellHSpan ++;
330 info.spanX ++;
331 } else if (action == R.string.action_decrease_width) {
332 lp.cellHSpan --;
333 info.spanX --;
334 } else if (action == R.string.action_increase_height) {
335 if (!layout.isRegionVacant(info.cellX, info.cellY + info.spanY, info.spanX, 1)) {
336 lp.cellY --;
337 info.cellY --;
338 }
339 lp.cellVSpan ++;
340 info.spanY ++;
341 } else if (action == R.string.action_decrease_height) {
342 lp.cellVSpan --;
343 info.spanY --;
344 }
345
346 layout.markCellsAsOccupiedForView(host);
347 Rect sizeRange = new Rect();
348 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, sizeRange);
349 ((LauncherAppWidgetHostView) host).updateAppWidgetSize(null,
350 sizeRange.left, sizeRange.top, sizeRange.right, sizeRange.bottom);
351 host.requestLayout();
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800352 mLauncher.getModelWriter().updateItemInDatabase(info);
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700353 announceConfirmation(mLauncher.getString(R.string.widget_resized, info.spanX, info.spanY));
354 }
355
Adam Cohen091440a2015-03-18 14:16:05 -0700356 @Thunk void announceConfirmation(int resId) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800357 announceConfirmation(mLauncher.getResources().getString(resId));
358 }
359
Adam Cohen091440a2015-03-18 14:16:05 -0700360 @Thunk void announceConfirmation(String confirmation) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800361 mLauncher.getDragLayer().announceForAccessibility(confirmation);
362
363 }
364
365 public boolean isInAccessibleDrag() {
366 return mDragInfo != null;
367 }
368
369 public DragInfo getDragInfo() {
370 return mDragInfo;
371 }
372
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700373 /**
374 * @param clickedTarget the actual view that was clicked
375 * @param dropLocation relative to {@param clickedTarget}. If provided, its center is used
376 * as the actual drop location otherwise the views center is used.
377 */
378 public void handleAccessibleDrop(View clickedTarget, Rect dropLocation,
Adam Cohenc9735cf2015-01-23 16:11:55 -0800379 String confirmation) {
380 if (!isInAccessibleDrag()) return;
381
382 int[] loc = new int[2];
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700383 if (dropLocation == null) {
384 loc[0] = clickedTarget.getWidth() / 2;
385 loc[1] = clickedTarget.getHeight() / 2;
386 } else {
387 loc[0] = dropLocation.centerX();
388 loc[1] = dropLocation.centerY();
389 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800390
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700391 mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(clickedTarget, loc);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800392 mLauncher.getDragController().completeAccessibleDrag(loc);
393
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700394 if (!TextUtils.isEmpty(confirmation)) {
395 announceConfirmation(confirmation);
396 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800397 }
398
399 public void beginAccessibleDrag(View item, ItemInfo info) {
400 mDragInfo = new DragInfo();
401 mDragInfo.info = info;
402 mDragInfo.item = item;
403 mDragInfo.dragType = DragType.ICON;
404 if (info instanceof FolderInfo) {
405 mDragInfo.dragType = DragType.FOLDER;
406 } else if (info instanceof LauncherAppWidgetInfo) {
407 mDragInfo.dragType = DragType.WIDGET;
408 }
409
Adam Cohenc9735cf2015-01-23 16:11:55 -0800410 Rect pos = new Rect();
411 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(item, pos);
Sunny Goyal94b510c2016-08-16 15:36:48 -0700412 mLauncher.getDragController().addDragListener(this);
413
414 DragOptions options = new DragOptions();
415 options.isAccessibleDrag = true;
Sunny Goyal9b180102020-03-11 10:02:29 -0700416 options.simulatedDndStartPoint = new Point(pos.centerX(), pos.centerY());
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800417 ItemLongClickListener.beginDrag(item, mLauncher, info, options);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800418 }
419
Sunny Goyal45478022015-06-08 16:52:41 -0700420 @Override
Sunny Goyal94b510c2016-08-16 15:36:48 -0700421 public void onDragStart(DragObject dragObject, DragOptions options) {
Sunny Goyal45478022015-06-08 16:52:41 -0700422 // No-op
Adam Cohenc9735cf2015-01-23 16:11:55 -0800423 }
424
Sunny Goyal45478022015-06-08 16:52:41 -0700425 @Override
426 public void onDragEnd() {
427 mLauncher.getDragController().removeDragListener(this);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800428 mDragInfo = null;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800429 }
Sunny Goyala9116722015-04-29 13:55:58 -0700430
431 /**
432 * Find empty space on the workspace and returns the screenId.
433 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700434 protected int findSpaceOnWorkspace(ItemInfo info, int[] outCoordinates) {
Sunny Goyala9116722015-04-29 13:55:58 -0700435 Workspace workspace = mLauncher.getWorkspace();
Sunny Goyalefb7e842018-10-04 15:11:00 -0700436 IntArray workspaceScreens = workspace.getScreenOrder();
437 int screenId;
Sunny Goyala9116722015-04-29 13:55:58 -0700438
439 // First check if there is space on the current screen.
440 int screenIndex = workspace.getCurrentPage();
441 screenId = workspaceScreens.get(screenIndex);
442 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex);
443
444 boolean found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700445 screenIndex = 0;
Sunny Goyala9116722015-04-29 13:55:58 -0700446 while (!found && screenIndex < workspaceScreens.size()) {
447 screenId = workspaceScreens.get(screenIndex);
448 layout = (CellLayout) workspace.getPageAt(screenIndex);
449 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
450 screenIndex++;
451 }
452
453 if (found) {
454 return screenId;
455 }
456
457 workspace.addExtraEmptyScreen();
458 screenId = workspace.commitExtraEmptyScreen();
459 layout = workspace.getScreenWithId(screenId);
460 found = layout.findCellForSpan(outCoordinates, info.spanX, info.spanY);
461
462 if (!found) {
463 Log.wtf(TAG, "Not enough space on an empty screen");
464 }
465 return screenId;
466 }
Samuel Fufa6eaf9892020-04-01 11:40:40 -0700467
468 /**
469 * An interface allowing views to handle their own action.
470 */
471 public interface AccessibilityActionHandler {
472
473 /**
474 * performs accessibility action and returns true on success
475 */
476 boolean performAccessibilityAction(int action, ItemInfo itemInfo);
477
478 /**
479 * adds all the accessibility actions that can be handled.
480 */
481 void addSupportedAccessibilityActions(AccessibilityNodeInfo accessibilityNodeInfo);
482 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800483}