blob: 981e3a65a4abb7cf09bad65d2775a3a8470a0258 [file] [log] [blame]
Sunny Goyal027fba32017-06-19 15:30:19 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.launcher3.dragndrop;
18
Sunny Goyald3864fa2017-11-14 15:06:36 -080019import static com.android.launcher3.LauncherState.NORMAL;
Sunny Goyal623eddd2018-03-02 12:24:41 -080020import static com.android.launcher3.states.RotationHelper.REQUEST_LOCK;
21import static com.android.launcher3.states.RotationHelper.REQUEST_NONE;
Sunny Goyald3864fa2017-11-14 15:06:36 -080022
Sunny Goyal027fba32017-06-19 15:30:19 -070023import android.content.ClipDescription;
24import android.content.Intent;
25import android.graphics.Point;
26import android.graphics.Rect;
27import android.os.Handler;
28import android.os.Looper;
Sunny Goyal027fba32017-06-19 15:30:19 -070029import android.util.Log;
30import android.view.DragEvent;
31import android.view.View;
32
Sunny Goyald3864fa2017-11-14 15:06:36 -080033import com.android.launcher3.AbstractFloatingView;
Sunny Goyal027fba32017-06-19 15:30:19 -070034import com.android.launcher3.DragSource;
Sunny Goyal1797af42017-10-06 13:29:57 -070035import com.android.launcher3.DropTarget.DragObject;
Sunny Goyal027fba32017-06-19 15:30:19 -070036import com.android.launcher3.Launcher;
Sunny Goyale84c5b82019-09-26 17:05:31 -070037import com.android.launcher3.util.ActivityTracker.SchedulerCallback;
Sunny Goyal027fba32017-06-19 15:30:19 -070038import com.android.launcher3.widget.PendingItemDragHelper;
39
40import java.util.UUID;
41
42/**
43 * {@link DragSource} for handling drop from a different window.
44 */
Sunny Goyale84c5b82019-09-26 17:05:31 -070045public abstract class BaseItemDragListener implements View.OnDragListener, DragSource,
46 DragOptions.PreDragCondition, SchedulerCallback<Launcher> {
Sunny Goyal027fba32017-06-19 15:30:19 -070047
48 private static final String TAG = "BaseItemDragListener";
49
50 private static final String MIME_TYPE_PREFIX = "com.android.launcher3.drag_and_drop/";
51 public static final String EXTRA_PIN_ITEM_DRAG_LISTENER = "pin_item_drag_listener";
52
53 // Position of preview relative to the touch location
54 private final Rect mPreviewRect;
55
56 private final int mPreviewBitmapWidth;
57 private final int mPreviewViewWidth;
58
59 // Randomly generated id used to verify the drag event.
60 private final String mId;
61
62 protected Launcher mLauncher;
63 private DragController mDragController;
Sunny Goyal027fba32017-06-19 15:30:19 -070064
65 public BaseItemDragListener(Rect previewRect, int previewBitmapWidth, int previewViewWidth) {
66 mPreviewRect = previewRect;
67 mPreviewBitmapWidth = previewBitmapWidth;
68 mPreviewViewWidth = previewViewWidth;
69 mId = UUID.randomUUID().toString();
70 }
71
Sunny Goyal027fba32017-06-19 15:30:19 -070072 public String getMimeType() {
73 return MIME_TYPE_PREFIX + mId;
74 }
75
Sunny Goyald3864fa2017-11-14 15:06:36 -080076 @Override
Winson Chung1a341002018-01-17 10:00:23 -080077 public boolean init(Launcher launcher, boolean alreadyOnHome) {
Sunny Goyald3864fa2017-11-14 15:06:36 -080078 AbstractFloatingView.closeAllOpenViews(launcher, alreadyOnHome);
79 launcher.getStateManager().goToState(NORMAL, alreadyOnHome /* animated */);
80 launcher.getDragLayer().setOnDragListener(this);
Sunny Goyal623eddd2018-03-02 12:24:41 -080081 launcher.getRotationHelper().setStateHandlerRequest(REQUEST_LOCK);
Sunny Goyald3864fa2017-11-14 15:06:36 -080082
Sunny Goyal027fba32017-06-19 15:30:19 -070083 mLauncher = launcher;
84 mDragController = launcher.getDragController();
Winson Chung1a341002018-01-17 10:00:23 -080085 return false;
Sunny Goyal027fba32017-06-19 15:30:19 -070086 }
87
88 @Override
89 public boolean onDrag(View view, DragEvent event) {
90 if (mLauncher == null || mDragController == null) {
91 postCleanup();
92 return false;
93 }
Tony Wickhamcfb803c2020-04-15 15:56:57 -050094 if (event.getAction() == DragEvent.ACTION_DRAG_STARTED || !mDragController.isDragging()) {
Sunny Goyal027fba32017-06-19 15:30:19 -070095 if (onDragStart(event)) {
96 return true;
97 } else {
98 postCleanup();
99 return false;
100 }
101 }
Sunny Goyal9b180102020-03-11 10:02:29 -0700102 return mDragController.onDragEvent(event);
Sunny Goyal027fba32017-06-19 15:30:19 -0700103 }
104
105 protected boolean onDragStart(DragEvent event) {
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700106 return onDragStart(event, this);
107 }
108
109 protected boolean onDragStart(DragEvent event, DragOptions.PreDragCondition preDragCondition) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700110 ClipDescription desc = event.getClipDescription();
111 if (desc == null || !desc.hasMimeType(getMimeType())) {
112 Log.e(TAG, "Someone started a dragAndDrop before us.");
113 return false;
114 }
115
116 Point downPos = new Point((int) event.getX(), (int) event.getY());
117 DragOptions options = new DragOptions();
Sunny Goyal9b180102020-03-11 10:02:29 -0700118 options.simulatedDndStartPoint = downPos;
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700119 options.preDragCondition = preDragCondition;
Sunny Goyal027fba32017-06-19 15:30:19 -0700120
121 // We use drag event position as the screenPos for the preview image. Since mPreviewRect
122 // already includes the view position relative to the drag event on the source window,
123 // and the absolute position (position relative to the screen) of drag event is same
124 // across windows, using drag position here give a good estimate for relative position
125 // to source window.
126 createDragHelper().startDrag(new Rect(mPreviewRect),
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700127 mPreviewBitmapWidth, mPreviewViewWidth, downPos, this, options);
Sunny Goyal027fba32017-06-19 15:30:19 -0700128 return true;
129 }
130
131 protected abstract PendingItemDragHelper createDragHelper();
132
133 @Override
134 public boolean shouldStartDrag(double distanceDragged) {
135 // Stay in pre-drag mode, if workspace is locked.
136 return !mLauncher.isWorkspaceLocked();
137 }
138
139 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700140 public void onPreDragStart(DragObject dragObject) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700141 // The predrag starts when the workspace is not yet loaded. In some cases we set
142 // the dragLayer alpha to 0 to have a nice fade-in animation. But that will prevent the
143 // dragView from being visible. Instead just skip the fade-in animation here.
144 mLauncher.getDragLayer().setAlpha(1);
Sunny Goyale36664d2021-04-16 14:47:33 -0700145 dragObject.dragView.setAlpha(.5f);
Sunny Goyal027fba32017-06-19 15:30:19 -0700146 }
147
148 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700149 public void onPreDragEnd(DragObject dragObject, boolean dragStarted) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700150 if (dragStarted) {
Sunny Goyale36664d2021-04-16 14:47:33 -0700151 dragObject.dragView.setAlpha(1f);
Sunny Goyal027fba32017-06-19 15:30:19 -0700152 }
153 }
154
155 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700156 public void onDropCompleted(View target, DragObject d, boolean success) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700157 postCleanup();
158 }
159
Sunny Goyal4dcda062018-05-25 10:32:40 -0700160 protected void postCleanup() {
Sunny Goyal027fba32017-06-19 15:30:19 -0700161 if (mLauncher != null) {
162 // Remove any drag params from the launcher intent since the drag operation is complete.
163 Intent newIntent = new Intent(mLauncher.getIntent());
164 newIntent.removeExtra(EXTRA_PIN_ITEM_DRAG_LISTENER);
165 mLauncher.setIntent(newIntent);
166 }
167
Sunny Goyal623eddd2018-03-02 12:24:41 -0800168 new Handler(Looper.getMainLooper()).post(this::removeListener);
Sunny Goyal027fba32017-06-19 15:30:19 -0700169 }
170
171 public void removeListener() {
172 if (mLauncher != null) {
Sunny Goyal623eddd2018-03-02 12:24:41 -0800173 mLauncher.getRotationHelper().setStateHandlerRequest(REQUEST_NONE);
Sunny Goyal027fba32017-06-19 15:30:19 -0700174 mLauncher.getDragLayer().setOnDragListener(null);
175 }
176 }
Sunny Goyal027fba32017-06-19 15:30:19 -0700177}