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