Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | |
| 17 | |
| 18 | package com.android.launcher2; |
| 19 | |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 20 | import android.animation.ValueAnimator; |
| 21 | import android.animation.ValueAnimator.AnimatorUpdateListener; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 22 | import android.content.res.Resources; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 23 | import android.graphics.Bitmap; |
| 24 | import android.graphics.Canvas; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 25 | import android.graphics.Paint; |
Winson Chung | b8c69f3 | 2011-10-19 21:36:08 -0700 | [diff] [blame] | 26 | import android.graphics.Point; |
Winson Chung | 61967cb | 2012-02-28 18:11:33 -0800 | [diff] [blame] | 27 | import android.graphics.PorterDuff; |
| 28 | import android.graphics.PorterDuffColorFilter; |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 29 | import android.graphics.Rect; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 30 | import android.view.View; |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 31 | import android.view.animation.DecelerateInterpolator; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 32 | |
Adam Cohen | 120980b | 2010-12-08 11:05:37 -0800 | [diff] [blame] | 33 | import com.android.launcher.R; |
| 34 | |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 35 | public class DragView extends View { |
Winson Chung | 867ca62 | 2012-02-21 15:48:35 -0800 | [diff] [blame] | 36 | private static float sDragAlpha = 1f; |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 37 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 38 | private Bitmap mBitmap; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 39 | private Bitmap mCrossFadeBitmap; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 40 | private Paint mPaint; |
| 41 | private int mRegistrationX; |
| 42 | private int mRegistrationY; |
| 43 | |
Winson Chung | b8c69f3 | 2011-10-19 21:36:08 -0700 | [diff] [blame] | 44 | private Point mDragVisualizeOffset = null; |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 45 | private Rect mDragRegion = null; |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 46 | private DragLayer mDragLayer = null; |
Adam Cohen | fc53cd2 | 2011-07-20 15:45:11 -0700 | [diff] [blame] | 47 | private boolean mHasDrawn = false; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 48 | private float mCrossFadeProgress = 0f; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 49 | |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 50 | ValueAnimator mAnim; |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 51 | private float mOffsetX = 0.0f; |
| 52 | private float mOffsetY = 0.0f; |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 53 | private float mInitialScale = 1f; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 54 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 55 | /** |
| 56 | * Construct the drag view. |
| 57 | * <p> |
| 58 | * The registration point is the point inside our view that the touch events should |
| 59 | * be centered upon. |
| 60 | * |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 61 | * @param launcher The Launcher instance |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 62 | * @param bitmap The view that we're dragging around. We scale it up when we draw it. |
| 63 | * @param registrationX The x coordinate of the registration point. |
| 64 | * @param registrationY The y coordinate of the registration point. |
| 65 | */ |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 66 | public DragView(Launcher launcher, Bitmap bitmap, int registrationX, int registrationY, |
Winson Chung | 72d5984 | 2012-02-22 13:51:36 -0800 | [diff] [blame] | 67 | int left, int top, int width, int height, final float initialScale) { |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 68 | super(launcher); |
| 69 | mDragLayer = launcher.getDragLayer(); |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 70 | mInitialScale = initialScale; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 71 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 72 | final Resources res = getResources(); |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 73 | final float offsetX = res.getDimensionPixelSize(R.dimen.dragViewOffsetX); |
| 74 | final float offsetY = res.getDimensionPixelSize(R.dimen.dragViewOffsetY); |
| 75 | final float scaleDps = res.getDimensionPixelSize(R.dimen.dragViewScale); |
| 76 | final float scale = (width + scaleDps) / width; |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 77 | |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 78 | // Set the initial scale to avoid any jumps |
| 79 | setScaleX(initialScale); |
| 80 | setScaleY(initialScale); |
| 81 | |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 82 | // Animate the view into the correct position |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 83 | mAnim = LauncherAnimUtils.ofFloat(0.0f, 1.0f); |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 84 | mAnim.setDuration(150); |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 85 | mAnim.addUpdateListener(new AnimatorUpdateListener() { |
| 86 | @Override |
| 87 | public void onAnimationUpdate(ValueAnimator animation) { |
| 88 | final float value = (Float) animation.getAnimatedValue(); |
| 89 | |
| 90 | final int deltaX = (int) ((value * offsetX) - mOffsetX); |
| 91 | final int deltaY = (int) ((value * offsetY) - mOffsetY); |
| 92 | |
| 93 | mOffsetX += deltaX; |
| 94 | mOffsetY += deltaY; |
Winson Chung | 72d5984 | 2012-02-22 13:51:36 -0800 | [diff] [blame] | 95 | setScaleX(initialScale + (value * (scale - initialScale))); |
| 96 | setScaleY(initialScale + (value * (scale - initialScale))); |
Winson Chung | 867ca62 | 2012-02-21 15:48:35 -0800 | [diff] [blame] | 97 | if (sDragAlpha != 1f) { |
| 98 | setAlpha(sDragAlpha * value + (1f - value)); |
| 99 | } |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 100 | |
| 101 | if (getParent() == null) { |
| 102 | animation.cancel(); |
| 103 | } else { |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 104 | setTranslationX(getTranslationX() + deltaX); |
| 105 | setTranslationY(getTranslationY() + deltaY); |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 106 | } |
| 107 | } |
| 108 | }); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 109 | |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 110 | mBitmap = Bitmap.createBitmap(bitmap, left, top, width, height); |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 111 | setDragRegion(new Rect(0, 0, width, height)); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 112 | |
| 113 | // The point in our scaled bitmap that the touch events are located |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 114 | mRegistrationX = registrationX; |
| 115 | mRegistrationY = registrationY; |
Patrick Dubroy | 62bbb3c | 2011-01-17 15:29:27 -0800 | [diff] [blame] | 116 | |
| 117 | // Force a measure, because Workspace uses getMeasuredHeight() before the layout pass |
| 118 | int ms = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); |
| 119 | measure(ms, ms); |
Michael Jurka | 6cfafb9 | 2012-02-23 18:25:43 -0800 | [diff] [blame] | 120 | mPaint = new Paint(Paint.FILTER_BITMAP_FLAG); |
Patrick Dubroy | 62bbb3c | 2011-01-17 15:29:27 -0800 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | public float getOffsetY() { |
| 124 | return mOffsetY; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 125 | } |
| 126 | |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 127 | public int getDragRegionLeft() { |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 128 | return mDragRegion.left; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | public int getDragRegionTop() { |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 132 | return mDragRegion.top; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | public int getDragRegionWidth() { |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 136 | return mDragRegion.width(); |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | public int getDragRegionHeight() { |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 140 | return mDragRegion.height(); |
| 141 | } |
| 142 | |
Winson Chung | b8c69f3 | 2011-10-19 21:36:08 -0700 | [diff] [blame] | 143 | public void setDragVisualizeOffset(Point p) { |
| 144 | mDragVisualizeOffset = p; |
| 145 | } |
| 146 | |
| 147 | public Point getDragVisualizeOffset() { |
| 148 | return mDragVisualizeOffset; |
| 149 | } |
| 150 | |
Adam Cohen | e3e27a8 | 2011-04-15 12:07:39 -0700 | [diff] [blame] | 151 | public void setDragRegion(Rect r) { |
| 152 | mDragRegion = r; |
| 153 | } |
| 154 | |
| 155 | public Rect getDragRegion() { |
| 156 | return mDragRegion; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 159 | public float getInitialScale() { |
| 160 | return mInitialScale; |
| 161 | } |
| 162 | |
| 163 | public void updateInitialScaleToCurrentScale() { |
| 164 | mInitialScale = getScaleX(); |
| 165 | } |
| 166 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 167 | @Override |
| 168 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
Joe Onorato | eebd924 | 2009-11-04 13:48:32 -0500 | [diff] [blame] | 169 | setMeasuredDimension(mBitmap.getWidth(), mBitmap.getHeight()); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | @Override |
| 173 | protected void onDraw(Canvas canvas) { |
Michael Jurka | 3a9fced | 2012-04-13 14:44:29 -0700 | [diff] [blame] | 174 | @SuppressWarnings("all") // suppress dead code warning |
| 175 | final boolean debug = false; |
| 176 | if (debug) { |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 177 | Paint p = new Paint(); |
| 178 | p.setStyle(Paint.Style.FILL); |
Winson Chung | eecf02d | 2012-03-02 17:14:58 -0800 | [diff] [blame] | 179 | p.setColor(0x66ffffff); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 180 | canvas.drawRect(0, 0, getWidth(), getHeight(), p); |
| 181 | } |
Patrick Dubroy | a669d79 | 2010-11-23 14:40:33 -0800 | [diff] [blame] | 182 | |
Adam Cohen | fc53cd2 | 2011-07-20 15:45:11 -0700 | [diff] [blame] | 183 | mHasDrawn = true; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 184 | boolean crossFade = mCrossFadeProgress > 0 && mCrossFadeBitmap != null; |
| 185 | if (crossFade) { |
| 186 | int alpha = crossFade ? (int) (255 * (1 - mCrossFadeProgress)) : 255; |
| 187 | mPaint.setAlpha(alpha); |
| 188 | } |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 189 | canvas.drawBitmap(mBitmap, 0.0f, 0.0f, mPaint); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 190 | if (crossFade) { |
| 191 | mPaint.setAlpha((int) (255 * mCrossFadeProgress)); |
| 192 | canvas.save(); |
| 193 | float sX = (mBitmap.getWidth() * 1.0f) / mCrossFadeBitmap.getWidth(); |
| 194 | float sY = (mBitmap.getHeight() * 1.0f) / mCrossFadeBitmap.getHeight(); |
| 195 | canvas.scale(sX, sY); |
| 196 | canvas.drawBitmap(mCrossFadeBitmap, 0.0f, 0.0f, mPaint); |
| 197 | canvas.restore(); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | public void setCrossFadeBitmap(Bitmap crossFadeBitmap) { |
| 202 | mCrossFadeBitmap = crossFadeBitmap; |
| 203 | } |
| 204 | |
| 205 | public void crossFade(int duration) { |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 206 | ValueAnimator va = LauncherAnimUtils.ofFloat(0f, 1f); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 207 | va.setDuration(duration); |
| 208 | va.setInterpolator(new DecelerateInterpolator(1.5f)); |
| 209 | va.addUpdateListener(new AnimatorUpdateListener() { |
| 210 | @Override |
| 211 | public void onAnimationUpdate(ValueAnimator animation) { |
| 212 | mCrossFadeProgress = animation.getAnimatedFraction(); |
| 213 | } |
| 214 | }); |
| 215 | va.start(); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 216 | } |
| 217 | |
Winson Chung | 61967cb | 2012-02-28 18:11:33 -0800 | [diff] [blame] | 218 | public void setColor(int color) { |
Michael Jurka | 6cfafb9 | 2012-02-23 18:25:43 -0800 | [diff] [blame] | 219 | if (mPaint == null) { |
| 220 | mPaint = new Paint(Paint.FILTER_BITMAP_FLAG); |
| 221 | } |
Winson Chung | 61967cb | 2012-02-28 18:11:33 -0800 | [diff] [blame] | 222 | if (color != 0) { |
| 223 | mPaint.setColorFilter(new PorterDuffColorFilter(color, PorterDuff.Mode.SRC_ATOP)); |
| 224 | } else { |
| 225 | mPaint.setColorFilter(null); |
| 226 | } |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 227 | invalidate(); |
| 228 | } |
| 229 | |
Adam Cohen | fc53cd2 | 2011-07-20 15:45:11 -0700 | [diff] [blame] | 230 | public boolean hasDrawn() { |
| 231 | return mHasDrawn; |
| 232 | } |
| 233 | |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 234 | @Override |
| 235 | public void setAlpha(float alpha) { |
| 236 | super.setAlpha(alpha); |
Adam Cohen | 3e8f811 | 2011-07-02 18:03:00 -0700 | [diff] [blame] | 237 | mPaint.setAlpha((int) (255 * alpha)); |
| 238 | invalidate(); |
| 239 | } |
| 240 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 241 | /** |
| 242 | * Create a window containing this view and show it. |
| 243 | * |
| 244 | * @param windowToken obtained from v.getWindowToken() from one of your views |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 245 | * @param touchX the x coordinate the user touched in DragLayer coordinates |
| 246 | * @param touchY the y coordinate the user touched in DragLayer coordinates |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 247 | */ |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 248 | public void show(int touchX, int touchY) { |
| 249 | mDragLayer.addView(this); |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 250 | |
Winson Chung | 043f2af | 2012-03-01 16:09:54 -0800 | [diff] [blame] | 251 | // Start the pick-up animation |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 252 | DragLayer.LayoutParams lp = new DragLayer.LayoutParams(0, 0); |
| 253 | lp.width = mBitmap.getWidth(); |
| 254 | lp.height = mBitmap.getHeight(); |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 255 | lp.customPosition = true; |
| 256 | setLayoutParams(lp); |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 257 | setTranslationX(touchX - mRegistrationX); |
| 258 | setTranslationY(touchY - mRegistrationY); |
Michael Jurka | ca99383 | 2012-06-29 15:17:04 -0700 | [diff] [blame] | 259 | // Post the animation to skip other expensive work happening on the first frame |
| 260 | post(new Runnable() { |
| 261 | public void run() { |
| 262 | mAnim.start(); |
| 263 | } |
| 264 | }); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 265 | } |
Adam Cohen | 716b51e | 2011-06-30 12:09:54 -0700 | [diff] [blame] | 266 | |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 267 | public void cancelAnimation() { |
| 268 | if (mAnim != null && mAnim.isRunning()) { |
| 269 | mAnim.cancel(); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | public void resetLayoutParams() { |
| 274 | mOffsetX = mOffsetY = 0; |
| 275 | requestLayout(); |
| 276 | } |
| 277 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 278 | /** |
| 279 | * Move the window containing this view. |
| 280 | * |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 281 | * @param touchX the x coordinate the user touched in DragLayer coordinates |
| 282 | * @param touchY the y coordinate the user touched in DragLayer coordinates |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 283 | */ |
| 284 | void move(int touchX, int touchY) { |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 285 | setTranslationX(touchX - mRegistrationX + (int) mOffsetX); |
| 286 | setTranslationY(touchY - mRegistrationY + (int) mOffsetY); |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | void remove() { |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 290 | if (getParent() != null) { |
| 291 | mDragLayer.removeView(DragView.this); |
| 292 | } |
Patrick Dubroy | 6f13342 | 2011-02-24 12:16:12 -0800 | [diff] [blame] | 293 | } |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 294 | } |
| 295 | |