blob: 0e593698d58c0c63835a1fe822d29ead4bbfa7b3 [file] [log] [blame]
Michael Jurka72b079e2010-12-10 01:03:53 -08001/*
2 * Copyright (C) 2010 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
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
Michael Jurka72b079e2010-12-10 01:03:53 -080018
19import android.content.Context;
20import android.util.AttributeSet;
21import android.view.MotionEvent;
22import android.view.View;
23
24
25/* Class that does most of the work of enabling dragging items out of a PagedView by performing a
26 * vertical drag. Used by both CustomizePagedView and AllAppsPagedView.
27 * Subclasses must do the following:
28 * * call setDragSlopeThreshold after making an instance of the PagedViewWithDraggableItems
29 * * call child.setOnLongClickListener(this) and child.setOnTouchListener(this) on all children
30 * (good place to do it is in syncPageItems)
31 * * override beginDragging(View) (but be careful to call super.beginDragging(View)
32 *
33 */
34public abstract class PagedViewWithDraggableItems extends PagedView
35 implements View.OnLongClickListener, View.OnTouchListener {
36 private View mLastTouchedItem;
37 private boolean mIsDragging;
Winson Chung94569f42011-01-17 14:09:17 -080038 private boolean mIsDragEnabled;
Michael Jurka72b079e2010-12-10 01:03:53 -080039 private float mDragSlopeThreshold;
Adam Cohenfc53cd22011-07-20 15:45:11 -070040 private Launcher mLauncher;
Michael Jurka72b079e2010-12-10 01:03:53 -080041
42 public PagedViewWithDraggableItems(Context context) {
Adam Cohenfc53cd22011-07-20 15:45:11 -070043 this(context, null);
Michael Jurka72b079e2010-12-10 01:03:53 -080044 }
45
46 public PagedViewWithDraggableItems(Context context, AttributeSet attrs) {
Adam Cohenfc53cd22011-07-20 15:45:11 -070047 this(context, attrs, 0);
Michael Jurka72b079e2010-12-10 01:03:53 -080048 }
49
50 public PagedViewWithDraggableItems(Context context, AttributeSet attrs, int defStyle) {
51 super(context, attrs, defStyle);
Adam Cohenfc53cd22011-07-20 15:45:11 -070052 mLauncher = (Launcher) context;
Michael Jurka72b079e2010-12-10 01:03:53 -080053 }
54
55 protected boolean beginDragging(View v) {
Winson Chung304dcde2011-01-07 11:17:23 -080056 boolean wasDragging = mIsDragging;
Michael Jurka72b079e2010-12-10 01:03:53 -080057 mIsDragging = true;
Winson Chung304dcde2011-01-07 11:17:23 -080058 return !wasDragging;
Michael Jurka72b079e2010-12-10 01:03:53 -080059 }
60
Winson Chung7d1fcbc2011-01-04 10:22:20 -080061 protected void cancelDragging() {
62 mIsDragging = false;
63 mLastTouchedItem = null;
Winson Chung94569f42011-01-17 14:09:17 -080064 mIsDragEnabled = false;
Winson Chung7d1fcbc2011-01-04 10:22:20 -080065 }
66
67 private void handleTouchEvent(MotionEvent ev) {
Michael Jurka72b079e2010-12-10 01:03:53 -080068 final int action = ev.getAction();
69 switch (action & MotionEvent.ACTION_MASK) {
70 case MotionEvent.ACTION_DOWN:
Winson Chung7d1fcbc2011-01-04 10:22:20 -080071 cancelDragging();
Winson Chung94569f42011-01-17 14:09:17 -080072 mIsDragEnabled = true;
Michael Jurka72b079e2010-12-10 01:03:53 -080073 break;
74 case MotionEvent.ACTION_MOVE:
Winson Chung94569f42011-01-17 14:09:17 -080075 if (mTouchState != TOUCH_STATE_SCROLLING && !mIsDragging && mIsDragEnabled) {
Michael Jurka72b079e2010-12-10 01:03:53 -080076 determineDraggingStart(ev);
77 }
78 break;
79 }
Winson Chung7d1fcbc2011-01-04 10:22:20 -080080 }
81
82 @Override
83 public boolean onInterceptTouchEvent(MotionEvent ev) {
84 handleTouchEvent(ev);
Michael Jurka72b079e2010-12-10 01:03:53 -080085 return super.onInterceptTouchEvent(ev);
86 }
87
88 @Override
Winson Chung7d1fcbc2011-01-04 10:22:20 -080089 public boolean onTouchEvent(MotionEvent ev) {
90 handleTouchEvent(ev);
91 return super.onTouchEvent(ev);
92 }
93
Adam Cohenc8f4e1b2014-11-19 16:03:20 -080094 public void trimMemory() {
Adam Cohen3f9c9712014-10-31 11:48:25 -070095 mLastTouchedItem = null;
96 }
97
Winson Chung7d1fcbc2011-01-04 10:22:20 -080098 @Override
Michael Jurka72b079e2010-12-10 01:03:53 -080099 public boolean onTouch(View v, MotionEvent event) {
100 mLastTouchedItem = v;
Winson Chung94569f42011-01-17 14:09:17 -0800101 mIsDragEnabled = true;
Michael Jurka72b079e2010-12-10 01:03:53 -0800102 return false;
103 }
104
105 @Override
Michael Jurka72b079e2010-12-10 01:03:53 -0800106 public boolean onLongClick(View v) {
107 // Return early if this is not initiated from a touch
108 if (!v.isInTouchMode()) return false;
109 // Return early if we are still animating the pages
110 if (mNextPage != INVALID_PAGE) return false;
Adam Cohenfc53cd22011-07-20 15:45:11 -0700111 // When we have exited all apps or are in transition, disregard long clicks
Winson Chungc93e5ae2012-07-23 20:48:26 -0700112 if (!mLauncher.isAllAppsVisible() ||
Adam Cohenfc53cd22011-07-20 15:45:11 -0700113 mLauncher.getWorkspace().isSwitchingState()) return false;
Winson Chung36a62fe2012-05-06 18:04:42 -0700114 // Return if global dragging is not enabled
115 if (!mLauncher.isDraggingEnabled()) return false;
Adam Cohenfc53cd22011-07-20 15:45:11 -0700116
Michael Jurka72b079e2010-12-10 01:03:53 -0800117 return beginDragging(v);
118 }
119
Michael Jurka72b079e2010-12-10 01:03:53 -0800120 /*
121 * Determines if we should change the touch state to start scrolling after the
122 * user moves their touch point too far.
123 */
124 protected void determineScrollingStart(MotionEvent ev) {
125 if (!mIsDragging) super.determineScrollingStart(ev);
126 }
127
128 /*
129 * Determines if we should change the touch state to start dragging after the
130 * user moves their touch point far enough.
131 */
132 protected void determineDraggingStart(MotionEvent ev) {
133 /*
134 * Locally do absolute value. mLastMotionX is set to the y value
135 * of the down event.
136 */
137 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
138 final float x = ev.getX(pointerIndex);
139 final float y = ev.getY(pointerIndex);
140 final int xDiff = (int) Math.abs(x - mLastMotionX);
141 final int yDiff = (int) Math.abs(y - mLastMotionY);
142
143 final int touchSlop = mTouchSlop;
144 boolean yMoved = yDiff > touchSlop;
145 boolean isUpwardMotion = (yDiff / (float) xDiff) > mDragSlopeThreshold;
146
147 if (isUpwardMotion && yMoved && mLastTouchedItem != null) {
148 // Drag if the user moved far enough along the Y axis
149 beginDragging(mLastTouchedItem);
150
151 // Cancel any pending long press
152 if (mAllowLongPress) {
153 mAllowLongPress = false;
154 // Try canceling the long press. It could also have been scheduled
155 // by a distant descendant, so use the mAllowLongPress flag to block
156 // everything
157 final View currentPage = getPageAt(mCurrentPage);
158 if (currentPage != null) {
159 currentPage.cancelLongPress();
160 }
161 }
162 }
163 }
164
165 public void setDragSlopeThreshold(float dragSlopeThreshold) {
166 mDragSlopeThreshold = dragSlopeThreshold;
167 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -0800168
169 @Override
170 protected void onDetachedFromWindow() {
Winson Chung94569f42011-01-17 14:09:17 -0800171 cancelDragging();
Patrick Dubroy2313eff2011-01-11 20:01:31 -0800172 super.onDetachedFromWindow();
173 }
Michael Jurka72b079e2010-12-10 01:03:53 -0800174}