blob: 9b91a1de67f876e237f5418dbd936e5f032cf3b4 [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;
37import com.android.launcher3.R;
Sunny Goyale84c5b82019-09-26 17:05:31 -070038import com.android.launcher3.util.ActivityTracker.SchedulerCallback;
Sunny Goyal027fba32017-06-19 15:30:19 -070039import com.android.launcher3.widget.PendingItemDragHelper;
40
41import java.util.UUID;
42
43/**
44 * {@link DragSource} for handling drop from a different window.
45 */
Sunny Goyale84c5b82019-09-26 17:05:31 -070046public abstract class BaseItemDragListener implements View.OnDragListener, DragSource,
47 DragOptions.PreDragCondition, SchedulerCallback<Launcher> {
Sunny Goyal027fba32017-06-19 15:30:19 -070048
49 private static final String TAG = "BaseItemDragListener";
50
51 private static final String MIME_TYPE_PREFIX = "com.android.launcher3.drag_and_drop/";
52 public static final String EXTRA_PIN_ITEM_DRAG_LISTENER = "pin_item_drag_listener";
53
54 // Position of preview relative to the touch location
55 private final Rect mPreviewRect;
56
57 private final int mPreviewBitmapWidth;
58 private final int mPreviewViewWidth;
59
60 // Randomly generated id used to verify the drag event.
61 private final String mId;
62
63 protected Launcher mLauncher;
64 private DragController mDragController;
Sunny Goyal027fba32017-06-19 15:30:19 -070065
66 public BaseItemDragListener(Rect previewRect, int previewBitmapWidth, int previewViewWidth) {
67 mPreviewRect = previewRect;
68 mPreviewBitmapWidth = previewBitmapWidth;
69 mPreviewViewWidth = previewViewWidth;
70 mId = UUID.randomUUID().toString();
71 }
72
Sunny Goyal027fba32017-06-19 15:30:19 -070073 public String getMimeType() {
74 return MIME_TYPE_PREFIX + mId;
75 }
76
Sunny Goyald3864fa2017-11-14 15:06:36 -080077 @Override
Winson Chung1a341002018-01-17 10:00:23 -080078 public boolean init(Launcher launcher, boolean alreadyOnHome) {
Sunny Goyald3864fa2017-11-14 15:06:36 -080079 AbstractFloatingView.closeAllOpenViews(launcher, alreadyOnHome);
80 launcher.getStateManager().goToState(NORMAL, alreadyOnHome /* animated */);
81 launcher.getDragLayer().setOnDragListener(this);
Sunny Goyal623eddd2018-03-02 12:24:41 -080082 launcher.getRotationHelper().setStateHandlerRequest(REQUEST_LOCK);
Sunny Goyald3864fa2017-11-14 15:06:36 -080083
Sunny Goyal027fba32017-06-19 15:30:19 -070084 mLauncher = launcher;
85 mDragController = launcher.getDragController();
Winson Chung1a341002018-01-17 10:00:23 -080086 return false;
Sunny Goyal027fba32017-06-19 15:30:19 -070087 }
88
89 @Override
90 public boolean onDrag(View view, DragEvent event) {
91 if (mLauncher == null || mDragController == null) {
92 postCleanup();
93 return false;
94 }
95 if (event.getAction() == DragEvent.ACTION_DRAG_STARTED) {
96 if (onDragStart(event)) {
97 return true;
98 } else {
99 postCleanup();
100 return false;
101 }
102 }
Sunny Goyal9b180102020-03-11 10:02:29 -0700103 return mDragController.onDragEvent(event);
Sunny Goyal027fba32017-06-19 15:30:19 -0700104 }
105
106 protected boolean onDragStart(DragEvent event) {
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700107 return onDragStart(event, this);
108 }
109
110 protected boolean onDragStart(DragEvent event, DragOptions.PreDragCondition preDragCondition) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700111 ClipDescription desc = event.getClipDescription();
112 if (desc == null || !desc.hasMimeType(getMimeType())) {
113 Log.e(TAG, "Someone started a dragAndDrop before us.");
114 return false;
115 }
116
117 Point downPos = new Point((int) event.getX(), (int) event.getY());
118 DragOptions options = new DragOptions();
Sunny Goyal9b180102020-03-11 10:02:29 -0700119 options.simulatedDndStartPoint = downPos;
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700120 options.preDragCondition = preDragCondition;
Sunny Goyal027fba32017-06-19 15:30:19 -0700121
122 // We use drag event position as the screenPos for the preview image. Since mPreviewRect
123 // already includes the view position relative to the drag event on the source window,
124 // and the absolute position (position relative to the screen) of drag event is same
125 // across windows, using drag position here give a good estimate for relative position
126 // to source window.
127 createDragHelper().startDrag(new Rect(mPreviewRect),
Sunny Goyal87b5eb62018-07-03 15:53:39 -0700128 mPreviewBitmapWidth, mPreviewViewWidth, downPos, this, options);
Sunny Goyal027fba32017-06-19 15:30:19 -0700129 return true;
130 }
131
132 protected abstract PendingItemDragHelper createDragHelper();
133
134 @Override
135 public boolean shouldStartDrag(double distanceDragged) {
136 // Stay in pre-drag mode, if workspace is locked.
137 return !mLauncher.isWorkspaceLocked();
138 }
139
140 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700141 public void onPreDragStart(DragObject dragObject) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700142 // The predrag starts when the workspace is not yet loaded. In some cases we set
143 // the dragLayer alpha to 0 to have a nice fade-in animation. But that will prevent the
144 // dragView from being visible. Instead just skip the fade-in animation here.
145 mLauncher.getDragLayer().setAlpha(1);
146
147 dragObject.dragView.setColor(
148 mLauncher.getResources().getColor(R.color.delete_target_hover_tint));
149 }
150
151 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700152 public void onPreDragEnd(DragObject dragObject, boolean dragStarted) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700153 if (dragStarted) {
154 dragObject.dragView.setColor(0);
155 }
156 }
157
158 @Override
Sunny Goyal1797af42017-10-06 13:29:57 -0700159 public void onDropCompleted(View target, DragObject d, boolean success) {
Sunny Goyal027fba32017-06-19 15:30:19 -0700160 postCleanup();
161 }
162
Sunny Goyal4dcda062018-05-25 10:32:40 -0700163 protected void postCleanup() {
Sunny Goyale84c5b82019-09-26 17:05:31 -0700164 Launcher.ACTIVITY_TRACKER.clearReference(this);
Sunny Goyal027fba32017-06-19 15:30:19 -0700165 if (mLauncher != null) {
166 // Remove any drag params from the launcher intent since the drag operation is complete.
167 Intent newIntent = new Intent(mLauncher.getIntent());
168 newIntent.removeExtra(EXTRA_PIN_ITEM_DRAG_LISTENER);
169 mLauncher.setIntent(newIntent);
170 }
171
Sunny Goyal623eddd2018-03-02 12:24:41 -0800172 new Handler(Looper.getMainLooper()).post(this::removeListener);
Sunny Goyal027fba32017-06-19 15:30:19 -0700173 }
174
175 public void removeListener() {
176 if (mLauncher != null) {
Sunny Goyal623eddd2018-03-02 12:24:41 -0800177 mLauncher.getRotationHelper().setStateHandlerRequest(REQUEST_NONE);
Sunny Goyal027fba32017-06-19 15:30:19 -0700178 mLauncher.getDragLayer().setOnDragListener(null);
179 }
180 }
Sunny Goyal027fba32017-06-19 15:30:19 -0700181}