The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [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 | |
Joe Onorato | a590252 | 2009-07-30 13:37:37 -0700 | [diff] [blame] | 17 | package com.android.launcher2; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
Michael Jurka | 3c4c20f | 2010-10-28 15:36:06 -0700 | [diff] [blame] | 19 | import com.android.launcher.R; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 20 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 21 | import android.animation.Animator; |
| 22 | import android.animation.AnimatorListenerAdapter; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 23 | import android.animation.AnimatorSet; |
| 24 | import android.animation.ObjectAnimator; |
Chet Haase | 00397b1 | 2010-10-07 11:13:10 -0700 | [diff] [blame] | 25 | import android.animation.TimeInterpolator; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 26 | import android.animation.ValueAnimator; |
| 27 | import android.animation.ValueAnimator.AnimatorUpdateListener; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 28 | import android.content.Context; |
Joe Onorato | 79e5626 | 2009-09-21 15:23:04 -0400 | [diff] [blame] | 29 | import android.content.res.Resources; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 30 | import android.content.res.TypedArray; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 31 | import android.graphics.Bitmap; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 32 | import android.graphics.Canvas; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 33 | import android.graphics.Paint; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 34 | import android.graphics.Point; |
| 35 | import android.graphics.PointF; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 36 | import android.graphics.Rect; |
| 37 | import android.graphics.RectF; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 38 | import android.graphics.Region; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 39 | import android.graphics.drawable.Drawable; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 40 | import android.util.AttributeSet; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 41 | import android.util.Log; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 42 | import android.view.ContextMenu; |
| 43 | import android.view.MotionEvent; |
| 44 | import android.view.View; |
| 45 | import android.view.ViewDebug; |
| 46 | import android.view.ViewGroup; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 47 | import android.view.animation.Animation; |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 48 | import android.view.animation.DecelerateInterpolator; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 49 | import android.view.animation.LayoutAnimationController; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 50 | |
Michael Jurka | 3c4c20f | 2010-10-28 15:36:06 -0700 | [diff] [blame] | 51 | import java.util.Arrays; |
Patrick Dubroy | 8e58e91 | 2010-10-14 13:21:48 -0700 | [diff] [blame] | 52 | |
Michael Jurka | cf6125c | 2011-01-28 15:20:01 -0800 | [diff] [blame^] | 53 | public class CellLayout extends CachedViewGroup { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 54 | static final String TAG = "CellLayout"; |
| 55 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 56 | private int mCellWidth; |
| 57 | private int mCellHeight; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 58 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 59 | private int mLeftPadding; |
| 60 | private int mRightPadding; |
| 61 | private int mTopPadding; |
| 62 | private int mBottomPadding; |
| 63 | |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 64 | private int mCountX; |
| 65 | private int mCountY; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 66 | |
| 67 | private int mWidthGap; |
| 68 | private int mHeightGap; |
| 69 | |
| 70 | private final Rect mRect = new Rect(); |
| 71 | private final CellInfo mCellInfo = new CellInfo(); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 72 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 73 | // These are temporary variables to prevent having to allocate a new object just to |
| 74 | // return an (x, y) value from helper functions. Do NOT use them to maintain other state. |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 75 | private final int[] mTmpCellXY = new int[2]; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 76 | private final int[] mTmpPoint = new int[2]; |
| 77 | private final PointF mTmpPointF = new PointF(); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 78 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 79 | boolean[][] mOccupied; |
| 80 | |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 81 | private OnTouchListener mInterceptTouchListener; |
| 82 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 83 | private float mBackgroundAlpha; |
Adam Cohen | 1b0aaac | 2010-10-28 11:11:18 -0700 | [diff] [blame] | 84 | private float mBackgroundAlphaMultiplier = 1.0f; |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 85 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 86 | private Drawable mNormalBackground; |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 87 | private Drawable mActiveBackground; |
| 88 | private Drawable mActiveGlowBackground; |
| 89 | private Drawable mNormalBackgroundMini; |
| 90 | private Drawable mNormalGlowBackgroundMini; |
| 91 | private Drawable mActiveBackgroundMini; |
| 92 | private Drawable mActiveGlowBackgroundMini; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 93 | private Rect mBackgroundRect; |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 94 | private Rect mGlowBackgroundRect; |
| 95 | private float mGlowBackgroundScale; |
| 96 | private float mGlowBackgroundAlpha; |
Patrick Dubroy | 1262e36 | 2010-10-06 15:49:50 -0700 | [diff] [blame] | 97 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 98 | private boolean mAcceptsDrops = false; |
| 99 | // If we're actively dragging something over this screen, mIsDragOverlapping is true |
| 100 | private boolean mIsDragOverlapping = false; |
| 101 | private boolean mIsDragOccuring = false; |
| 102 | private boolean mIsDefaultDropTarget = false; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 103 | private final Point mDragCenter = new Point(); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 104 | |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 105 | // These arrays are used to implement the drag visualization on x-large screens. |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 106 | // They are used as circular arrays, indexed by mDragOutlineCurrent. |
| 107 | private Point[] mDragOutlines = new Point[8]; |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 108 | private float[] mDragOutlineAlphas = new float[mDragOutlines.length]; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 109 | private InterruptibleInOutAnimator[] mDragOutlineAnims = |
| 110 | new InterruptibleInOutAnimator[mDragOutlines.length]; |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 111 | |
| 112 | // Used as an index into the above 3 arrays; indicates which is the most current value. |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 113 | private int mDragOutlineCurrent = 0; |
Patrick Dubroy | 8e58e91 | 2010-10-14 13:21:48 -0700 | [diff] [blame] | 114 | private final Paint mDragOutlinePaint = new Paint(); |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 115 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 116 | private Drawable mCrosshairsDrawable = null; |
Patrick Dubroy | 49250ad | 2010-10-08 15:33:52 -0700 | [diff] [blame] | 117 | private InterruptibleInOutAnimator mCrosshairsAnimator = null; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 118 | private float mCrosshairsVisibility = 0.0f; |
| 119 | |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 120 | // When a drag operation is in progress, holds the nearest cell to the touch point |
| 121 | private final int[] mDragCell = new int[2]; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 122 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 123 | private boolean mDragging = false; |
| 124 | |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 125 | private TimeInterpolator mEaseOutInterpolator; |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 126 | private CellLayoutChildren mChildren; |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 127 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 128 | public CellLayout(Context context) { |
| 129 | this(context, null); |
| 130 | } |
| 131 | |
| 132 | public CellLayout(Context context, AttributeSet attrs) { |
| 133 | this(context, attrs, 0); |
| 134 | } |
| 135 | |
| 136 | public CellLayout(Context context, AttributeSet attrs, int defStyle) { |
| 137 | super(context, attrs, defStyle); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 138 | |
| 139 | // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show |
| 140 | // the user where a dragged item will land when dropped. |
| 141 | setWillNotDraw(false); |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 142 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 143 | TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0); |
| 144 | |
| 145 | mCellWidth = a.getDimensionPixelSize(R.styleable.CellLayout_cellWidth, 10); |
| 146 | mCellHeight = a.getDimensionPixelSize(R.styleable.CellLayout_cellHeight, 10); |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 147 | mWidthGap = a.getDimensionPixelSize(R.styleable.CellLayout_widthGap, -1); |
| 148 | mHeightGap = a.getDimensionPixelSize(R.styleable.CellLayout_heightGap, -1); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 149 | |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 150 | mLeftPadding = |
| 151 | a.getDimensionPixelSize(R.styleable.CellLayout_xAxisStartPadding, 10); |
| 152 | mRightPadding = |
| 153 | a.getDimensionPixelSize(R.styleable.CellLayout_xAxisEndPadding, 10); |
| 154 | mTopPadding = |
| 155 | a.getDimensionPixelSize(R.styleable.CellLayout_yAxisStartPadding, 10); |
| 156 | mBottomPadding = |
| 157 | a.getDimensionPixelSize(R.styleable.CellLayout_yAxisEndPadding, 10); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 158 | |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 159 | mCountX = LauncherModel.getCellCountX(); |
| 160 | mCountY = LauncherModel.getCellCountY(); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 161 | mOccupied = new boolean[mCountX][mCountY]; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 162 | |
| 163 | a.recycle(); |
| 164 | |
| 165 | setAlwaysDrawnWithCacheEnabled(false); |
| 166 | |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 167 | final Resources res = getResources(); |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 168 | |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 169 | if (LauncherApplication.isScreenXLarge()) { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 170 | mNormalBackground = res.getDrawable(R.drawable.homescreen_large_blue); |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 171 | mActiveBackground = res.getDrawable(R.drawable.homescreen_large_green); |
| 172 | mActiveGlowBackground = res.getDrawable(R.drawable.homescreen_large_green_strong); |
| 173 | |
| 174 | mNormalBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue); |
| 175 | mNormalGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue_strong); |
| 176 | mActiveBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green); |
| 177 | mActiveGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green_strong); |
| 178 | |
| 179 | mNormalBackground.setFilterBitmap(true); |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 180 | mActiveBackground.setFilterBitmap(true); |
| 181 | mActiveGlowBackground.setFilterBitmap(true); |
| 182 | mNormalBackgroundMini.setFilterBitmap(true); |
| 183 | mNormalGlowBackgroundMini.setFilterBitmap(true); |
| 184 | mActiveBackgroundMini.setFilterBitmap(true); |
| 185 | mActiveGlowBackgroundMini.setFilterBitmap(true); |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 186 | } |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 187 | |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 188 | // Initialize the data structures used for the drag visualization. |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 189 | |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 190 | mCrosshairsDrawable = res.getDrawable(R.drawable.gardening_crosshairs); |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 191 | mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 192 | |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 193 | // Set up the animation for fading the crosshairs in and out |
| 194 | int animDuration = res.getInteger(R.integer.config_crosshairsFadeInTime); |
Patrick Dubroy | 49250ad | 2010-10-08 15:33:52 -0700 | [diff] [blame] | 195 | mCrosshairsAnimator = new InterruptibleInOutAnimator(animDuration, 0.0f, 1.0f); |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 196 | mCrosshairsAnimator.getAnimator().addUpdateListener(new AnimatorUpdateListener() { |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 197 | public void onAnimationUpdate(ValueAnimator animation) { |
| 198 | mCrosshairsVisibility = ((Float) animation.getAnimatedValue()).floatValue(); |
Patrick Dubroy | 8e58e91 | 2010-10-14 13:21:48 -0700 | [diff] [blame] | 199 | invalidate(); |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 200 | } |
| 201 | }); |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 202 | mCrosshairsAnimator.getAnimator().setInterpolator(mEaseOutInterpolator); |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 203 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 204 | for (int i = 0; i < mDragOutlines.length; i++) { |
| 205 | mDragOutlines[i] = new Point(-1, -1); |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | // When dragging things around the home screens, we show a green outline of |
| 209 | // where the item will land. The outlines gradually fade out, leaving a trail |
| 210 | // behind the drag path. |
| 211 | // Set up all the animations that are used to implement this fading. |
| 212 | final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime); |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 213 | final float fromAlphaValue = 0; |
| 214 | final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha); |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 215 | |
Patrick Dubroy | 8e58e91 | 2010-10-14 13:21:48 -0700 | [diff] [blame] | 216 | Arrays.fill(mDragOutlineAlphas, fromAlphaValue); |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 217 | |
| 218 | for (int i = 0; i < mDragOutlineAnims.length; i++) { |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 219 | final InterruptibleInOutAnimator anim = |
| 220 | new InterruptibleInOutAnimator(duration, fromAlphaValue, toAlphaValue); |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 221 | anim.getAnimator().setInterpolator(mEaseOutInterpolator); |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 222 | final int thisIndex = i; |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 223 | anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() { |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 224 | public void onAnimationUpdate(ValueAnimator animation) { |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 225 | final Bitmap outline = (Bitmap)anim.getTag(); |
| 226 | |
| 227 | // If an animation is started and then stopped very quickly, we can still |
| 228 | // get spurious updates we've cleared the tag. Guard against this. |
| 229 | if (outline == null) { |
Patrick Dubroy | fe6bd87 | 2010-10-13 17:32:10 -0700 | [diff] [blame] | 230 | if (false) { |
| 231 | Object val = animation.getAnimatedValue(); |
| 232 | Log.d(TAG, "anim " + thisIndex + " update: " + val + |
| 233 | ", isStopped " + anim.isStopped()); |
| 234 | } |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 235 | // Try to prevent it from continuing to run |
| 236 | animation.cancel(); |
| 237 | } else { |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 238 | mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue(); |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 239 | final int left = mDragOutlines[thisIndex].x; |
| 240 | final int top = mDragOutlines[thisIndex].y; |
| 241 | CellLayout.this.invalidate(left, top, |
| 242 | left + outline.getWidth(), top + outline.getHeight()); |
| 243 | } |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 244 | } |
| 245 | }); |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 246 | // The animation holds a reference to the drag outline bitmap as long is it's |
| 247 | // running. This way the bitmap can be GCed when the animations are complete. |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 248 | anim.getAnimator().addListener(new AnimatorListenerAdapter() { |
Michael Jurka | 3c4c20f | 2010-10-28 15:36:06 -0700 | [diff] [blame] | 249 | @Override |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 250 | public void onAnimationEnd(Animator animation) { |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 251 | if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) { |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 252 | anim.setTag(null); |
| 253 | } |
| 254 | } |
| 255 | }); |
| 256 | mDragOutlineAnims[i] = anim; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 257 | } |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 258 | |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 259 | mBackgroundRect = new Rect(); |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 260 | mGlowBackgroundRect = new Rect(); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 261 | setHoverScale(1.0f); |
| 262 | setHoverAlpha(1.0f); |
Michael Jurka | bea1519 | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 263 | |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 264 | mChildren = new CellLayoutChildren(context); |
| 265 | mChildren.setCellDimensions( |
| 266 | mCellWidth, mCellHeight, mLeftPadding, mTopPadding, mWidthGap, mHeightGap); |
| 267 | addView(mChildren); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Winson Chung | 6e31408 | 2011-01-27 16:46:51 -0800 | [diff] [blame] | 270 | public CellLayoutChildren getChildrenLayout() { |
| 271 | if (getChildCount() > 0) { |
| 272 | return (CellLayoutChildren) getChildAt(0); |
| 273 | } |
| 274 | return null; |
| 275 | } |
| 276 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 277 | public void setIsDefaultDropTarget(boolean isDefaultDropTarget) { |
| 278 | if (mIsDefaultDropTarget != isDefaultDropTarget) { |
| 279 | mIsDefaultDropTarget = isDefaultDropTarget; |
| 280 | invalidate(); |
| 281 | } |
| 282 | } |
| 283 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 284 | void setIsDragOccuring(boolean isDragOccuring) { |
| 285 | if (mIsDragOccuring != isDragOccuring) { |
| 286 | mIsDragOccuring = isDragOccuring; |
| 287 | invalidate(); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void setIsDragOverlapping(boolean isDragOverlapping) { |
| 292 | if (mIsDragOverlapping != isDragOverlapping) { |
| 293 | mIsDragOverlapping = isDragOverlapping; |
| 294 | invalidate(); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | boolean getIsDragOverlapping() { |
| 299 | return mIsDragOverlapping; |
| 300 | } |
| 301 | |
| 302 | private void updateGlowRect() { |
| 303 | float marginFraction = (mGlowBackgroundScale - 1.0f) / 2.0f; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 304 | int marginX = (int) (marginFraction * (mBackgroundRect.right - mBackgroundRect.left)); |
| 305 | int marginY = (int) (marginFraction * (mBackgroundRect.bottom - mBackgroundRect.top)); |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 306 | mGlowBackgroundRect.set(mBackgroundRect.left - marginX, mBackgroundRect.top - marginY, |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 307 | mBackgroundRect.right + marginX, mBackgroundRect.bottom + marginY); |
| 308 | invalidate(); |
| 309 | } |
| 310 | |
| 311 | public void setHoverScale(float scaleFactor) { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 312 | if (scaleFactor != mGlowBackgroundScale) { |
| 313 | mGlowBackgroundScale = scaleFactor; |
| 314 | updateGlowRect(); |
Michael Jurka | 8deb1e6 | 2011-01-25 16:27:43 -0800 | [diff] [blame] | 315 | if (getParent() != null) { |
| 316 | ((View) getParent()).invalidate(); |
| 317 | } |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 318 | } |
| 319 | } |
| 320 | |
| 321 | public float getHoverScale() { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 322 | return mGlowBackgroundScale; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | public float getHoverAlpha() { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 326 | return mGlowBackgroundAlpha; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | public void setHoverAlpha(float alpha) { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 330 | mGlowBackgroundAlpha = alpha; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 331 | invalidate(); |
| 332 | } |
| 333 | |
| 334 | void animateDrop() { |
| 335 | if (LauncherApplication.isScreenXLarge()) { |
| 336 | Resources res = getResources(); |
| 337 | float onDropScale = res.getInteger(R.integer.config_screenOnDropScalePercent) / 100.0f; |
| 338 | ObjectAnimator scaleUp = ObjectAnimator.ofFloat(this, "hoverScale", onDropScale); |
| 339 | scaleUp.setDuration(res.getInteger(R.integer.config_screenOnDropScaleUpDuration)); |
| 340 | ObjectAnimator scaleDown = ObjectAnimator.ofFloat(this, "hoverScale", 1.0f); |
| 341 | scaleDown.setDuration(res.getInteger(R.integer.config_screenOnDropScaleDownDuration)); |
| 342 | ObjectAnimator alphaFadeOut = ObjectAnimator.ofFloat(this, "hoverAlpha", 0.0f); |
| 343 | |
| 344 | alphaFadeOut.setStartDelay(res.getInteger(R.integer.config_screenOnDropAlphaFadeDelay)); |
| 345 | alphaFadeOut.setDuration(res.getInteger(R.integer.config_screenOnDropAlphaFadeDelay)); |
| 346 | |
| 347 | AnimatorSet bouncer = new AnimatorSet(); |
| 348 | bouncer.play(scaleUp).before(scaleDown); |
| 349 | bouncer.play(scaleUp).with(alphaFadeOut); |
Michael Jurka | 8edd75c | 2010-12-17 20:15:06 -0800 | [diff] [blame] | 350 | bouncer.addListener(new AnimatorListenerAdapter() { |
Michael Jurka | 3c4c20f | 2010-10-28 15:36:06 -0700 | [diff] [blame] | 351 | @Override |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 352 | public void onAnimationStart(Animator animation) { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 353 | setIsDragOverlapping(true); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 354 | } |
Michael Jurka | 3c4c20f | 2010-10-28 15:36:06 -0700 | [diff] [blame] | 355 | @Override |
Michael Jurka | 8edd75c | 2010-12-17 20:15:06 -0800 | [diff] [blame] | 356 | public void onAnimationEnd(Animator animation) { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 357 | setIsDragOverlapping(false); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 358 | setHoverScale(1.0f); |
| 359 | setHoverAlpha(1.0f); |
| 360 | } |
| 361 | }); |
| 362 | bouncer.start(); |
| 363 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 364 | } |
| 365 | |
Jeff Sharkey | 83f111d | 2009-04-20 21:03:13 -0700 | [diff] [blame] | 366 | @Override |
Patrick Dubroy | 1262e36 | 2010-10-06 15:49:50 -0700 | [diff] [blame] | 367 | protected void onDraw(Canvas canvas) { |
Michael Jurka | 3e7c763 | 2010-10-02 16:01:03 -0700 | [diff] [blame] | 368 | // When we're large, we are either drawn in a "hover" state (ie when dragging an item to |
| 369 | // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f) |
| 370 | // When we're small, we are either drawn normally or in the "accepts drops" state (during |
| 371 | // a drag). However, we also drag the mini hover background *over* one of those two |
| 372 | // backgrounds |
Winson Chung | 26cbf3a | 2011-01-06 16:25:55 -0800 | [diff] [blame] | 373 | if (LauncherApplication.isScreenXLarge() && mBackgroundAlpha > 0.0f) { |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 374 | Drawable bg; |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 375 | boolean mini = getScaleX() < 0.5f; |
| 376 | |
| 377 | if (mIsDragOverlapping) { |
| 378 | // In the mini case, we draw the active_glow bg *over* the active background |
| 379 | bg = mini ? mActiveBackgroundMini : mActiveGlowBackground; |
| 380 | } else if (mIsDragOccuring && mAcceptsDrops) { |
| 381 | bg = mini ? mActiveBackgroundMini : mActiveBackground; |
Adam Cohen | 3af863b | 2011-01-25 12:16:51 -0800 | [diff] [blame] | 382 | } else if (mIsDefaultDropTarget && mini) { |
| 383 | bg = mNormalGlowBackgroundMini; |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 384 | } else { |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 385 | bg = mini ? mNormalBackgroundMini : mNormalBackground; |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 386 | } |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 387 | |
| 388 | bg.setAlpha((int) (mBackgroundAlpha * mBackgroundAlphaMultiplier * 255)); |
| 389 | bg.setBounds(mBackgroundRect); |
| 390 | bg.draw(canvas); |
| 391 | |
| 392 | if (mini && mIsDragOverlapping) { |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 393 | boolean modifiedClipRect = false; |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 394 | if (mGlowBackgroundScale > 1.0f) { |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 395 | // If the hover background's scale is greater than 1, we'll be drawing outside |
| 396 | // the bounds of this CellLayout. Get around that by temporarily increasing the |
| 397 | // size of the clip rect |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 398 | float marginFraction = (mGlowBackgroundScale - 1.0f) / 2.0f; |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 399 | Rect clipRect = canvas.getClipBounds(); |
| 400 | int marginX = (int) (marginFraction * (clipRect.right - clipRect.left)); |
| 401 | int marginY = (int) (marginFraction * (clipRect.bottom - clipRect.top)); |
| 402 | canvas.save(Canvas.CLIP_SAVE_FLAG); |
| 403 | canvas.clipRect(-marginX, -marginY, |
| 404 | getWidth() + marginX, getHeight() + marginY, Region.Op.REPLACE); |
| 405 | modifiedClipRect = true; |
| 406 | } |
| 407 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 408 | mActiveGlowBackgroundMini.setAlpha( |
| 409 | (int) (mBackgroundAlpha * mGlowBackgroundAlpha * 255)); |
| 410 | mActiveGlowBackgroundMini.setBounds(mGlowBackgroundRect); |
| 411 | mActiveGlowBackgroundMini.draw(canvas); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 412 | if (modifiedClipRect) { |
| 413 | canvas.restore(); |
| 414 | } |
Michael Jurka | 3e7c763 | 2010-10-02 16:01:03 -0700 | [diff] [blame] | 415 | } |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 416 | } |
Romain Guy | a6abce8 | 2009-11-10 02:54:41 -0800 | [diff] [blame] | 417 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 418 | if (mCrosshairsVisibility > 0.0f) { |
| 419 | final int countX = mCountX; |
| 420 | final int countY = mCountY; |
| 421 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 422 | final float MAX_ALPHA = 0.4f; |
| 423 | final int MAX_VISIBLE_DISTANCE = 600; |
| 424 | final float DISTANCE_MULTIPLIER = 0.002f; |
| 425 | |
| 426 | final Drawable d = mCrosshairsDrawable; |
| 427 | final int width = d.getIntrinsicWidth(); |
| 428 | final int height = d.getIntrinsicHeight(); |
| 429 | |
| 430 | int x = getLeftPadding() - (mWidthGap / 2) - (width / 2); |
| 431 | for (int col = 0; col <= countX; col++) { |
| 432 | int y = getTopPadding() - (mHeightGap / 2) - (height / 2); |
| 433 | for (int row = 0; row <= countY; row++) { |
| 434 | mTmpPointF.set(x - mDragCenter.x, y - mDragCenter.y); |
| 435 | float dist = mTmpPointF.length(); |
| 436 | // Crosshairs further from the drag point are more faint |
| 437 | float alpha = Math.min(MAX_ALPHA, |
| 438 | DISTANCE_MULTIPLIER * (MAX_VISIBLE_DISTANCE - dist)); |
| 439 | if (alpha > 0.0f) { |
| 440 | d.setBounds(x, y, x + width, y + height); |
| 441 | d.setAlpha((int) (alpha * 255 * mCrosshairsVisibility)); |
| 442 | d.draw(canvas); |
| 443 | } |
| 444 | y += mCellHeight + mHeightGap; |
| 445 | } |
| 446 | x += mCellWidth + mWidthGap; |
| 447 | } |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 448 | } |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 449 | |
Patrick Dubroy | 8e58e91 | 2010-10-14 13:21:48 -0700 | [diff] [blame] | 450 | final Paint paint = mDragOutlinePaint; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 451 | for (int i = 0; i < mDragOutlines.length; i++) { |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 452 | final float alpha = mDragOutlineAlphas[i]; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 453 | if (alpha > 0) { |
| 454 | final Point p = mDragOutlines[i]; |
| 455 | final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag(); |
Chet Haase | 472b281 | 2010-10-14 07:02:04 -0700 | [diff] [blame] | 456 | paint.setAlpha((int)(alpha + .5f)); |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 457 | canvas.drawBitmap(b, p.x, p.y, paint); |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 458 | } |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 459 | } |
| 460 | } |
| 461 | |
| 462 | @Override |
Jeff Sharkey | 83f111d | 2009-04-20 21:03:13 -0700 | [diff] [blame] | 463 | public void cancelLongPress() { |
| 464 | super.cancelLongPress(); |
| 465 | |
| 466 | // Cancel long press for all children |
| 467 | final int count = getChildCount(); |
| 468 | for (int i = 0; i < count; i++) { |
| 469 | final View child = getChildAt(i); |
| 470 | child.cancelLongPress(); |
| 471 | } |
| 472 | } |
| 473 | |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 474 | public void setOnInterceptTouchListener(View.OnTouchListener listener) { |
| 475 | mInterceptTouchListener = listener; |
| 476 | } |
| 477 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 478 | int getCountX() { |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 479 | return mCountX; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | int getCountY() { |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 483 | return mCountY; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 484 | } |
| 485 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 486 | public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params) { |
Michael Jurka | f3ca3ab | 2010-10-20 17:08:24 -0700 | [diff] [blame] | 487 | return addViewToCellLayout(child, index, childId, params, true); |
| 488 | } |
| 489 | |
| 490 | public boolean addViewToCellLayout( |
| 491 | View child, int index, int childId, LayoutParams params, boolean markCells) { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 492 | final LayoutParams lp = params; |
| 493 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 494 | // Generate an id for each view, this assumes we have at most 256x256 cells |
| 495 | // per workspace screen |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 496 | if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 497 | // If the horizontal or vertical span is set to -1, it is taken to |
| 498 | // mean that it spans the extent of the CellLayout |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 499 | if (lp.cellHSpan < 0) lp.cellHSpan = mCountX; |
| 500 | if (lp.cellVSpan < 0) lp.cellVSpan = mCountY; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 501 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 502 | child.setId(childId); |
| 503 | |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 504 | mChildren.addView(child, index, lp); |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 505 | |
Michael Jurka | f3ca3ab | 2010-10-20 17:08:24 -0700 | [diff] [blame] | 506 | if (markCells) markCellsAsOccupiedForView(child); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 507 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 508 | return true; |
| 509 | } |
| 510 | return false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 511 | } |
Michael Jurka | 3e7c763 | 2010-10-02 16:01:03 -0700 | [diff] [blame] | 512 | |
Michael Jurka | bea1519 | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 513 | public void setAcceptsDrops(boolean acceptsDrops) { |
| 514 | if (mAcceptsDrops != acceptsDrops) { |
| 515 | mAcceptsDrops = acceptsDrops; |
| 516 | invalidate(); |
| 517 | } |
| 518 | } |
| 519 | |
Michael Jurka | 3e7c763 | 2010-10-02 16:01:03 -0700 | [diff] [blame] | 520 | public boolean getAcceptsDrops() { |
| 521 | return mAcceptsDrops; |
| 522 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 523 | |
| 524 | @Override |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 525 | public void removeAllViews() { |
| 526 | clearOccupiedCells(); |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 527 | mChildren.removeAllViews(); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | @Override |
| 531 | public void removeAllViewsInLayout() { |
| 532 | clearOccupiedCells(); |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 533 | mChildren.removeAllViewsInLayout(); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 534 | } |
| 535 | |
Michael Jurka | f3ca3ab | 2010-10-20 17:08:24 -0700 | [diff] [blame] | 536 | public void removeViewWithoutMarkingCells(View view) { |
Michael Jurka | cf6125c | 2011-01-28 15:20:01 -0800 | [diff] [blame^] | 537 | mChildren.removeView(view); |
Michael Jurka | f3ca3ab | 2010-10-20 17:08:24 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 540 | @Override |
| 541 | public void removeView(View view) { |
| 542 | markCellsAsUnoccupiedForView(view); |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 543 | mChildren.removeView(view); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | @Override |
| 547 | public void removeViewAt(int index) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 548 | markCellsAsUnoccupiedForView(mChildren.getChildAt(index)); |
| 549 | mChildren.removeViewAt(index); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | @Override |
| 553 | public void removeViewInLayout(View view) { |
| 554 | markCellsAsUnoccupiedForView(view); |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 555 | mChildren.removeViewInLayout(view); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | @Override |
| 559 | public void removeViews(int start, int count) { |
| 560 | for (int i = start; i < start + count; i++) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 561 | markCellsAsUnoccupiedForView(mChildren.getChildAt(i)); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 562 | } |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 563 | mChildren.removeViews(start, count); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | @Override |
| 567 | public void removeViewsInLayout(int start, int count) { |
| 568 | for (int i = start; i < start + count; i++) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 569 | markCellsAsUnoccupiedForView(mChildren.getChildAt(i)); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 570 | } |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 571 | mChildren.removeViewsInLayout(start, count); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 574 | public void drawChildren(Canvas canvas) { |
| 575 | mChildren.draw(canvas); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | @Override |
| 579 | protected void onAttachedToWindow() { |
| 580 | super.onAttachedToWindow(); |
| 581 | mCellInfo.screen = ((ViewGroup) getParent()).indexOfChild(this); |
| 582 | } |
| 583 | |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 584 | public void setTagToCellInfoForPoint(int touchX, int touchY) { |
| 585 | final CellInfo cellInfo = mCellInfo; |
| 586 | final Rect frame = mRect; |
| 587 | final int x = touchX + mScrollX; |
| 588 | final int y = touchY + mScrollY; |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 589 | final int count = mChildren.getChildCount(); |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 590 | |
| 591 | boolean found = false; |
| 592 | for (int i = count - 1; i >= 0; i--) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 593 | final View child = mChildren.getChildAt(i); |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 594 | |
| 595 | if ((child.getVisibility()) == VISIBLE || child.getAnimation() != null) { |
| 596 | child.getHitRect(frame); |
| 597 | if (frame.contains(x, y)) { |
| 598 | final LayoutParams lp = (LayoutParams) child.getLayoutParams(); |
| 599 | cellInfo.cell = child; |
| 600 | cellInfo.cellX = lp.cellX; |
| 601 | cellInfo.cellY = lp.cellY; |
| 602 | cellInfo.spanX = lp.cellHSpan; |
| 603 | cellInfo.spanY = lp.cellVSpan; |
| 604 | cellInfo.valid = true; |
| 605 | found = true; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 606 | break; |
| 607 | } |
| 608 | } |
| 609 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 610 | |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 611 | if (!found) { |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 612 | final int cellXY[] = mTmpCellXY; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 613 | pointToCellExact(x, y, cellXY); |
| 614 | |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 615 | cellInfo.cell = null; |
| 616 | cellInfo.cellX = cellXY[0]; |
| 617 | cellInfo.cellY = cellXY[1]; |
| 618 | cellInfo.spanX = 1; |
| 619 | cellInfo.spanY = 1; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 620 | cellInfo.valid = cellXY[0] >= 0 && cellXY[1] >= 0 && cellXY[0] < mCountX && |
| 621 | cellXY[1] < mCountY && !mOccupied[cellXY[0]][cellXY[1]]; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 622 | } |
| 623 | setTag(cellInfo); |
| 624 | } |
| 625 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 626 | @Override |
| 627 | public boolean onInterceptTouchEvent(MotionEvent ev) { |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 628 | if (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev)) { |
| 629 | return true; |
| 630 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 631 | final int action = ev.getAction(); |
| 632 | final CellInfo cellInfo = mCellInfo; |
| 633 | |
| 634 | if (action == MotionEvent.ACTION_DOWN) { |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 635 | setTagToCellInfoForPoint((int) ev.getX(), (int) ev.getY()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 636 | } else if (action == MotionEvent.ACTION_UP) { |
| 637 | cellInfo.cell = null; |
| 638 | cellInfo.cellX = -1; |
| 639 | cellInfo.cellY = -1; |
| 640 | cellInfo.spanX = 0; |
| 641 | cellInfo.spanY = 0; |
| 642 | cellInfo.valid = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 643 | setTag(cellInfo); |
| 644 | } |
| 645 | |
| 646 | return false; |
| 647 | } |
| 648 | |
| 649 | @Override |
| 650 | public CellInfo getTag() { |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 651 | return (CellInfo) super.getTag(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 652 | } |
| 653 | |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 654 | /** |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 655 | * Given a point, return the cell that strictly encloses that point |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 656 | * @param x X coordinate of the point |
| 657 | * @param y Y coordinate of the point |
| 658 | * @param result Array of 2 ints to hold the x and y coordinate of the cell |
| 659 | */ |
| 660 | void pointToCellExact(int x, int y, int[] result) { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 661 | final int hStartPadding = getLeftPadding(); |
| 662 | final int vStartPadding = getTopPadding(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 663 | |
| 664 | result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap); |
| 665 | result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap); |
| 666 | |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 667 | final int xAxis = mCountX; |
| 668 | final int yAxis = mCountY; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 669 | |
| 670 | if (result[0] < 0) result[0] = 0; |
| 671 | if (result[0] >= xAxis) result[0] = xAxis - 1; |
| 672 | if (result[1] < 0) result[1] = 0; |
| 673 | if (result[1] >= yAxis) result[1] = yAxis - 1; |
| 674 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 675 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 676 | /** |
| 677 | * Given a point, return the cell that most closely encloses that point |
| 678 | * @param x X coordinate of the point |
| 679 | * @param y Y coordinate of the point |
| 680 | * @param result Array of 2 ints to hold the x and y coordinate of the cell |
| 681 | */ |
| 682 | void pointToCellRounded(int x, int y, int[] result) { |
| 683 | pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result); |
| 684 | } |
| 685 | |
| 686 | /** |
| 687 | * Given a cell coordinate, return the point that represents the upper left corner of that cell |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 688 | * |
| 689 | * @param cellX X coordinate of the cell |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 690 | * @param cellY Y coordinate of the cell |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 691 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 692 | * @param result Array of 2 ints to hold the x and y coordinate of the point |
| 693 | */ |
| 694 | void cellToPoint(int cellX, int cellY, int[] result) { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 695 | final int hStartPadding = getLeftPadding(); |
| 696 | final int vStartPadding = getTopPadding(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 697 | |
| 698 | result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap); |
| 699 | result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap); |
| 700 | } |
| 701 | |
Romain Guy | 84f296c | 2009-11-04 15:00:44 -0800 | [diff] [blame] | 702 | int getCellWidth() { |
| 703 | return mCellWidth; |
| 704 | } |
| 705 | |
| 706 | int getCellHeight() { |
| 707 | return mCellHeight; |
| 708 | } |
| 709 | |
Romain Guy | 1a304a1 | 2009-11-10 00:02:32 -0800 | [diff] [blame] | 710 | int getLeftPadding() { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 711 | return mLeftPadding; |
Romain Guy | 1a304a1 | 2009-11-10 00:02:32 -0800 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | int getTopPadding() { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 715 | return mTopPadding; |
Romain Guy | 1a304a1 | 2009-11-10 00:02:32 -0800 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | int getRightPadding() { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 719 | return mRightPadding; |
Romain Guy | 1a304a1 | 2009-11-10 00:02:32 -0800 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | int getBottomPadding() { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 723 | return mBottomPadding; |
Romain Guy | 1a304a1 | 2009-11-10 00:02:32 -0800 | [diff] [blame] | 724 | } |
| 725 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 726 | @Override |
| 727 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
| 728 | // TODO: currently ignoring padding |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 729 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 730 | int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 731 | int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec); |
| 732 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 733 | int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); |
| 734 | int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 735 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 736 | if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) { |
| 737 | throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions"); |
| 738 | } |
| 739 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 740 | final int cellWidth = mCellWidth; |
| 741 | final int cellHeight = mCellHeight; |
| 742 | |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 743 | int numWidthGaps = mCountX - 1; |
| 744 | int numHeightGaps = mCountY - 1; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 745 | |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 746 | if (mWidthGap < 0 || mHeightGap < 0) { |
| 747 | int vSpaceLeft = heightSpecSize - mTopPadding - mBottomPadding - (cellHeight * mCountY); |
| 748 | mHeightGap = vSpaceLeft / numHeightGaps; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 749 | |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 750 | int hSpaceLeft = widthSpecSize - mLeftPadding - mRightPadding - (cellWidth * mCountX); |
| 751 | mWidthGap = hSpaceLeft / numWidthGaps; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 752 | |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 753 | // center it around the min gaps |
| 754 | int minGap = Math.min(mWidthGap, mHeightGap); |
| 755 | mWidthGap = mHeightGap = minGap; |
| 756 | } |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 757 | |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 758 | // Initial values correspond to widthSpecMode == MeasureSpec.EXACTLY |
| 759 | int newWidth = widthSpecSize; |
| 760 | int newHeight = heightSpecSize; |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 761 | if (widthSpecMode == MeasureSpec.AT_MOST) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 762 | newWidth = mLeftPadding + mRightPadding + (mCountX * cellWidth) + |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 763 | ((mCountX - 1) * mWidthGap); |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 764 | newHeight = mTopPadding + mBottomPadding + (mCountY * cellHeight) + |
Winson Chung | ece7f5b | 2010-10-22 14:54:12 -0700 | [diff] [blame] | 765 | ((mCountY - 1) * mHeightGap); |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 766 | setMeasuredDimension(newWidth, newHeight); |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 767 | } |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 768 | |
| 769 | int count = getChildCount(); |
| 770 | for (int i = 0; i < count; i++) { |
| 771 | View child = getChildAt(i); |
| 772 | int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY); |
| 773 | int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight, |
| 774 | MeasureSpec.EXACTLY); |
| 775 | child.measure(childWidthMeasureSpec, childheightMeasureSpec); |
| 776 | } |
| 777 | setMeasuredDimension(newWidth, newHeight); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | @Override |
Michael Jurka | 28750fb | 2010-09-24 17:43:49 -0700 | [diff] [blame] | 781 | protected void onLayout(boolean changed, int l, int t, int r, int b) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 782 | int count = getChildCount(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 783 | for (int i = 0; i < count; i++) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 784 | View child = getChildAt(i); |
| 785 | child.layout(0, 0, r - l, b - t); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | |
| 789 | @Override |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 790 | protected void onSizeChanged(int w, int h, int oldw, int oldh) { |
| 791 | super.onSizeChanged(w, h, oldw, oldh); |
Michael Jurka | 1801479 | 2010-10-14 09:01:34 -0700 | [diff] [blame] | 792 | mBackgroundRect.set(0, 0, w, h); |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 793 | updateGlowRect(); |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 797 | protected void setChildrenDrawingCacheEnabled(boolean enabled) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 798 | mChildren.setChildrenDrawingCacheEnabled(enabled); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | @Override |
| 802 | protected void setChildrenDrawnWithCacheEnabled(boolean enabled) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 803 | mChildren.setChildrenDrawnWithCacheEnabled(enabled); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 804 | } |
| 805 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 806 | public float getBackgroundAlpha() { |
| 807 | return mBackgroundAlpha; |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 808 | } |
| 809 | |
Adam Cohen | 1b0aaac | 2010-10-28 11:11:18 -0700 | [diff] [blame] | 810 | public void setBackgroundAlphaMultiplier(float multiplier) { |
| 811 | mBackgroundAlphaMultiplier = multiplier; |
| 812 | } |
| 813 | |
Adam Cohen | ddb8219 | 2010-11-10 16:32:54 -0800 | [diff] [blame] | 814 | public float getBackgroundAlphaMultiplier() { |
| 815 | return mBackgroundAlphaMultiplier; |
| 816 | } |
| 817 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 818 | public void setBackgroundAlpha(float alpha) { |
| 819 | mBackgroundAlpha = alpha; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 820 | invalidate(); |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 821 | } |
| 822 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 823 | // Need to return true to let the view system know we know how to handle alpha-- this is |
| 824 | // because when our children have an alpha of 0.0f, they are still rendering their "dimmed" |
| 825 | // versions |
| 826 | @Override |
| 827 | protected boolean onSetAlpha(int alpha) { |
| 828 | return true; |
| 829 | } |
| 830 | |
| 831 | public void setAlpha(float alpha) { |
| 832 | setChildrenAlpha(alpha); |
| 833 | super.setAlpha(alpha); |
| 834 | } |
| 835 | |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 836 | private void setChildrenAlpha(float alpha) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 837 | final int childCount = getChildCount(); |
| 838 | for (int i = 0; i < childCount; i++) { |
Michael Jurka | dee0589 | 2010-07-27 10:01:56 -0700 | [diff] [blame] | 839 | getChildAt(i).setAlpha(alpha); |
| 840 | } |
| 841 | } |
| 842 | |
Patrick Dubroy | 440c360 | 2010-07-13 17:50:32 -0700 | [diff] [blame] | 843 | public View getChildAt(int x, int y) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 844 | return mChildren.getChildAt(x, y); |
Patrick Dubroy | 440c360 | 2010-07-13 17:50:32 -0700 | [diff] [blame] | 845 | } |
| 846 | |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 847 | /** |
| 848 | * Estimate where the top left cell of the dragged item will land if it is dropped. |
| 849 | * |
| 850 | * @param originX The X value of the top left corner of the item |
| 851 | * @param originY The Y value of the top left corner of the item |
| 852 | * @param spanX The number of horizontal cells that the item spans |
| 853 | * @param spanY The number of vertical cells that the item spans |
| 854 | * @param result The estimated drop cell X and Y. |
| 855 | */ |
| 856 | void estimateDropCell(int originX, int originY, int spanX, int spanY, int[] result) { |
Adam Cohen | d22015c | 2010-07-26 22:02:18 -0700 | [diff] [blame] | 857 | final int countX = mCountX; |
| 858 | final int countY = mCountY; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 859 | |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 860 | // pointToCellRounded takes the top left of a cell but will pad that with |
| 861 | // cellWidth/2 and cellHeight/2 when finding the matching cell |
| 862 | pointToCellRounded(originX, originY, result); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 863 | |
| 864 | // If the item isn't fully on this screen, snap to the edges |
| 865 | int rightOverhang = result[0] + spanX - countX; |
| 866 | if (rightOverhang > 0) { |
| 867 | result[0] -= rightOverhang; // Snap to right |
| 868 | } |
| 869 | result[0] = Math.max(0, result[0]); // Snap to left |
| 870 | int bottomOverhang = result[1] + spanY - countY; |
| 871 | if (bottomOverhang > 0) { |
| 872 | result[1] -= bottomOverhang; // Snap to bottom |
| 873 | } |
| 874 | result[1] = Math.max(0, result[1]); // Snap to top |
| 875 | } |
| 876 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 877 | void visualizeDropLocation( |
| 878 | View v, Bitmap dragOutline, int originX, int originY, int spanX, int spanY) { |
| 879 | |
Patrick Dubroy | 08ae2ec | 2010-10-14 23:54:22 -0700 | [diff] [blame] | 880 | final int oldDragCellX = mDragCell[0]; |
| 881 | final int oldDragCellY = mDragCell[1]; |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 882 | final int[] nearest = findNearestVacantArea(originX, originY, spanX, spanY, v, mDragCell); |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 883 | if (v != null) { |
| 884 | mDragCenter.set(originX + (v.getWidth() / 2), originY + (v.getHeight() / 2)); |
| 885 | } else { |
| 886 | mDragCenter.set(originX, originY); |
| 887 | } |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 888 | |
Patrick Dubroy | 08ae2ec | 2010-10-14 23:54:22 -0700 | [diff] [blame] | 889 | if (nearest != null && (nearest[0] != oldDragCellX || nearest[1] != oldDragCellY)) { |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 890 | // Find the top left corner of the rect the object will occupy |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 891 | final int[] topLeft = mTmpPoint; |
| 892 | cellToPoint(nearest[0], nearest[1], topLeft); |
| 893 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 894 | int left = topLeft[0]; |
| 895 | int top = topLeft[1]; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 896 | |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 897 | if (v != null) { |
| 898 | if (v.getParent() instanceof CellLayout) { |
| 899 | LayoutParams lp = (LayoutParams) v.getLayoutParams(); |
| 900 | left += lp.leftMargin; |
| 901 | top += lp.topMargin; |
| 902 | } |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 903 | |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 904 | // Offsets due to the size difference between the View and the dragOutline |
| 905 | left += (v.getWidth() - dragOutline.getWidth()) / 2; |
| 906 | top += (v.getHeight() - dragOutline.getHeight()) / 2; |
| 907 | } |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 908 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 909 | final int oldIndex = mDragOutlineCurrent; |
Patrick Dubroy | 08ae2ec | 2010-10-14 23:54:22 -0700 | [diff] [blame] | 910 | mDragOutlineAnims[oldIndex].animateOut(); |
| 911 | mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length; |
Winson Chung | 150fbab | 2010-09-29 17:14:26 -0700 | [diff] [blame] | 912 | |
Patrick Dubroy | 08ae2ec | 2010-10-14 23:54:22 -0700 | [diff] [blame] | 913 | mDragOutlines[mDragOutlineCurrent].set(left, top); |
| 914 | mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline); |
| 915 | mDragOutlineAnims[mDragOutlineCurrent].animateIn(); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 916 | } |
Patrick Dubroy | 49250ad | 2010-10-08 15:33:52 -0700 | [diff] [blame] | 917 | |
| 918 | // If we are drawing crosshairs, the entire CellLayout needs to be invalidated |
| 919 | if (mCrosshairsDrawable != null) { |
| 920 | invalidate(); |
| 921 | } |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 922 | } |
| 923 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 924 | /** |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 925 | * Find a vacant area that will fit the given bounds nearest the requested |
| 926 | * cell location. Uses Euclidean distance to score multiple vacant areas. |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 927 | * |
Romain Guy | 51afc02 | 2009-05-04 18:03:43 -0700 | [diff] [blame] | 928 | * @param pixelX The X location at which you want to search for a vacant area. |
| 929 | * @param pixelY The Y location at which you want to search for a vacant area. |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 930 | * @param spanX Horizontal span of the object. |
| 931 | * @param spanY Vertical span of the object. |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 932 | * @param result Array in which to place the result, or null (in which case a new array will |
| 933 | * be allocated) |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 934 | * @return The X, Y cell of a vacant area that can contain this object, |
| 935 | * nearest the requested location. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 936 | */ |
Michael Jurka | 6a1435d | 2010-09-27 17:35:12 -0700 | [diff] [blame] | 937 | int[] findNearestVacantArea( |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 938 | int pixelX, int pixelY, int spanX, int spanY, int[] result) { |
| 939 | return findNearestVacantArea(pixelX, pixelY, spanX, spanY, null, result); |
Michael Jurka | 6a1435d | 2010-09-27 17:35:12 -0700 | [diff] [blame] | 940 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 941 | |
Michael Jurka | 6a1435d | 2010-09-27 17:35:12 -0700 | [diff] [blame] | 942 | /** |
| 943 | * Find a vacant area that will fit the given bounds nearest the requested |
| 944 | * cell location. Uses Euclidean distance to score multiple vacant areas. |
| 945 | * |
| 946 | * @param pixelX The X location at which you want to search for a vacant area. |
| 947 | * @param pixelY The Y location at which you want to search for a vacant area. |
| 948 | * @param spanX Horizontal span of the object. |
| 949 | * @param spanY Vertical span of the object. |
Michael Jurka | 6a1435d | 2010-09-27 17:35:12 -0700 | [diff] [blame] | 950 | * @param ignoreView Considers space occupied by this view as unoccupied |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 951 | * @param result Previously returned value to possibly recycle. |
Michael Jurka | 6a1435d | 2010-09-27 17:35:12 -0700 | [diff] [blame] | 952 | * @return The X, Y cell of a vacant area that can contain this object, |
| 953 | * nearest the requested location. |
| 954 | */ |
| 955 | int[] findNearestVacantArea( |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 956 | int pixelX, int pixelY, int spanX, int spanY, View ignoreView, int[] result) { |
Michael Jurka | c6ee42e | 2010-09-30 12:04:50 -0700 | [diff] [blame] | 957 | // mark space take by ignoreView as available (method checks if ignoreView is null) |
| 958 | markCellsAsUnoccupiedForView(ignoreView); |
| 959 | |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 960 | // Keep track of best-scoring drop area |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 961 | final int[] bestXY = result != null ? result : new int[2]; |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 962 | double bestDistance = Double.MAX_VALUE; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 963 | |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 964 | final int countX = mCountX; |
| 965 | final int countY = mCountY; |
| 966 | final boolean[][] occupied = mOccupied; |
| 967 | |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 968 | for (int y = 0; y < countY - (spanY - 1); y++) { |
Michael Jurka | c28de51 | 2010-08-13 11:27:44 -0700 | [diff] [blame] | 969 | inner: |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 970 | for (int x = 0; x < countX - (spanX - 1); x++) { |
Michael Jurka | c28de51 | 2010-08-13 11:27:44 -0700 | [diff] [blame] | 971 | for (int i = 0; i < spanX; i++) { |
| 972 | for (int j = 0; j < spanY; j++) { |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 973 | if (occupied[x + i][y + j]) { |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 974 | // small optimization: we can skip to after the column we just found |
Michael Jurka | c28de51 | 2010-08-13 11:27:44 -0700 | [diff] [blame] | 975 | // an occupied cell |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 976 | x += i; |
Michael Jurka | c28de51 | 2010-08-13 11:27:44 -0700 | [diff] [blame] | 977 | continue inner; |
| 978 | } |
| 979 | } |
| 980 | } |
| 981 | final int[] cellXY = mTmpCellXY; |
| 982 | cellToPoint(x, y, cellXY); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 983 | |
Michael Jurka | c28de51 | 2010-08-13 11:27:44 -0700 | [diff] [blame] | 984 | double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2) |
| 985 | + Math.pow(cellXY[1] - pixelY, 2)); |
| 986 | if (distance <= bestDistance) { |
| 987 | bestDistance = distance; |
| 988 | bestXY[0] = x; |
| 989 | bestXY[1] = y; |
| 990 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 991 | } |
| 992 | } |
Michael Jurka | c6ee42e | 2010-09-30 12:04:50 -0700 | [diff] [blame] | 993 | // re-mark space taken by ignoreView as occupied |
| 994 | markCellsAsOccupiedForView(ignoreView); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 995 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 996 | // Return null if no suitable location found |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 997 | if (bestDistance < Double.MAX_VALUE) { |
| 998 | return bestXY; |
| 999 | } else { |
| 1000 | return null; |
| 1001 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1002 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1003 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1004 | boolean existsEmptyCell() { |
| 1005 | return findCellForSpan(null, 1, 1); |
| 1006 | } |
| 1007 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1008 | /** |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1009 | * Finds the upper-left coordinate of the first rectangle in the grid that can |
| 1010 | * hold a cell of the specified dimensions. If intersectX and intersectY are not -1, |
| 1011 | * then this method will only return coordinates for rectangles that contain the cell |
| 1012 | * (intersectX, intersectY) |
| 1013 | * |
| 1014 | * @param cellXY The array that will contain the position of a vacant cell if such a cell |
| 1015 | * can be found. |
| 1016 | * @param spanX The horizontal span of the cell we want to find. |
| 1017 | * @param spanY The vertical span of the cell we want to find. |
| 1018 | * |
| 1019 | * @return True if a vacant cell of the specified dimension was found, false otherwise. |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1020 | */ |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1021 | boolean findCellForSpan(int[] cellXY, int spanX, int spanY) { |
| 1022 | return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null); |
| 1023 | } |
| 1024 | |
| 1025 | /** |
| 1026 | * Like above, but ignores any cells occupied by the item "ignoreView" |
| 1027 | * |
| 1028 | * @param cellXY The array that will contain the position of a vacant cell if such a cell |
| 1029 | * can be found. |
| 1030 | * @param spanX The horizontal span of the cell we want to find. |
| 1031 | * @param spanY The vertical span of the cell we want to find. |
| 1032 | * @param ignoreView The home screen item we should treat as not occupying any space |
| 1033 | * @return |
| 1034 | */ |
| 1035 | boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) { |
| 1036 | return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, ignoreView); |
| 1037 | } |
| 1038 | |
| 1039 | /** |
| 1040 | * Like above, but if intersectX and intersectY are not -1, then this method will try to |
| 1041 | * return coordinates for rectangles that contain the cell [intersectX, intersectY] |
| 1042 | * |
| 1043 | * @param spanX The horizontal span of the cell we want to find. |
| 1044 | * @param spanY The vertical span of the cell we want to find. |
| 1045 | * @param ignoreView The home screen item we should treat as not occupying any space |
| 1046 | * @param intersectX The X coordinate of the cell that we should try to overlap |
| 1047 | * @param intersectX The Y coordinate of the cell that we should try to overlap |
| 1048 | * |
| 1049 | * @return True if a vacant cell of the specified dimension was found, false otherwise. |
| 1050 | */ |
| 1051 | boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, |
| 1052 | int intersectX, int intersectY) { |
| 1053 | return findCellForSpanThatIntersectsIgnoring( |
| 1054 | cellXY, spanX, spanY, intersectX, intersectY, null); |
| 1055 | } |
| 1056 | |
| 1057 | /** |
| 1058 | * The superset of the above two methods |
| 1059 | */ |
| 1060 | boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, |
| 1061 | int intersectX, int intersectY, View ignoreView) { |
Michael Jurka | c6ee42e | 2010-09-30 12:04:50 -0700 | [diff] [blame] | 1062 | // mark space take by ignoreView as available (method checks if ignoreView is null) |
| 1063 | markCellsAsUnoccupiedForView(ignoreView); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1064 | |
Michael Jurka | 28750fb | 2010-09-24 17:43:49 -0700 | [diff] [blame] | 1065 | boolean foundCell = false; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1066 | while (true) { |
| 1067 | int startX = 0; |
| 1068 | if (intersectX >= 0) { |
| 1069 | startX = Math.max(startX, intersectX - (spanX - 1)); |
| 1070 | } |
| 1071 | int endX = mCountX - (spanX - 1); |
| 1072 | if (intersectX >= 0) { |
| 1073 | endX = Math.min(endX, intersectX + (spanX - 1) + (spanX == 1 ? 1 : 0)); |
| 1074 | } |
| 1075 | int startY = 0; |
| 1076 | if (intersectY >= 0) { |
| 1077 | startY = Math.max(startY, intersectY - (spanY - 1)); |
| 1078 | } |
| 1079 | int endY = mCountY - (spanY - 1); |
| 1080 | if (intersectY >= 0) { |
| 1081 | endY = Math.min(endY, intersectY + (spanY - 1) + (spanY == 1 ? 1 : 0)); |
| 1082 | } |
| 1083 | |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 1084 | for (int y = startY; y < endY && !foundCell; y++) { |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1085 | inner: |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 1086 | for (int x = startX; x < endX; x++) { |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1087 | for (int i = 0; i < spanX; i++) { |
| 1088 | for (int j = 0; j < spanY; j++) { |
| 1089 | if (mOccupied[x + i][y + j]) { |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 1090 | // small optimization: we can skip to after the column we just found |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1091 | // an occupied cell |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 1092 | x += i; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1093 | continue inner; |
| 1094 | } |
| 1095 | } |
| 1096 | } |
| 1097 | if (cellXY != null) { |
| 1098 | cellXY[0] = x; |
| 1099 | cellXY[1] = y; |
| 1100 | } |
Michael Jurka | 28750fb | 2010-09-24 17:43:49 -0700 | [diff] [blame] | 1101 | foundCell = true; |
| 1102 | break; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1103 | } |
| 1104 | } |
| 1105 | if (intersectX == -1 && intersectY == -1) { |
| 1106 | break; |
| 1107 | } else { |
| 1108 | // if we failed to find anything, try again but without any requirements of |
| 1109 | // intersecting |
| 1110 | intersectX = -1; |
| 1111 | intersectY = -1; |
| 1112 | continue; |
| 1113 | } |
| 1114 | } |
| 1115 | |
Michael Jurka | c6ee42e | 2010-09-30 12:04:50 -0700 | [diff] [blame] | 1116 | // re-mark space taken by ignoreView as occupied |
| 1117 | markCellsAsOccupiedForView(ignoreView); |
Michael Jurka | 28750fb | 2010-09-24 17:43:49 -0700 | [diff] [blame] | 1118 | return foundCell; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | /** |
| 1122 | * Called when drag has left this CellLayout or has been completed (successfully or not) |
| 1123 | */ |
| 1124 | void onDragExit() { |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 1125 | // This can actually be called when we aren't in a drag, e.g. when adding a new |
| 1126 | // item to this layout via the customize drawer. |
| 1127 | // Guard against that case. |
| 1128 | if (mDragging) { |
| 1129 | mDragging = false; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1130 | |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 1131 | // Fade out the drag indicators |
| 1132 | if (mCrosshairsAnimator != null) { |
| 1133 | mCrosshairsAnimator.animateOut(); |
| 1134 | } |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 1135 | } |
Patrick Dubroy | 08ae2ec | 2010-10-14 23:54:22 -0700 | [diff] [blame] | 1136 | |
| 1137 | // Invalidate the drag data |
| 1138 | mDragCell[0] = -1; |
| 1139 | mDragCell[1] = -1; |
| 1140 | mDragOutlineAnims[mDragOutlineCurrent].animateOut(); |
| 1141 | mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length; |
| 1142 | |
Michael Jurka | 33945b2 | 2010-12-21 18:19:38 -0800 | [diff] [blame] | 1143 | setIsDragOverlapping(false); |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1144 | } |
| 1145 | |
| 1146 | /** |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1147 | * Mark a child as having been dropped. |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 1148 | * At the beginning of the drag operation, the child may have been on another |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 1149 | * screen, but it is re-parented before this method is called. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1150 | * |
| 1151 | * @param child The child that is being dropped |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1152 | */ |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1153 | void onDropChild(View child, boolean animate) { |
Romain Guy | d94533d | 2009-08-17 10:01:15 -0700 | [diff] [blame] | 1154 | if (child != null) { |
| 1155 | LayoutParams lp = (LayoutParams) child.getLayoutParams(); |
Romain Guy | d94533d | 2009-08-17 10:01:15 -0700 | [diff] [blame] | 1156 | lp.isDragging = false; |
Romain Guy | 84f296c | 2009-11-04 15:00:44 -0800 | [diff] [blame] | 1157 | lp.dropped = true; |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1158 | lp.animateDrop = animate; |
Patrick Dubroy | e3887cc | 2011-01-20 10:43:40 -0800 | [diff] [blame] | 1159 | child.setVisibility(animate ? View.INVISIBLE : View.VISIBLE); |
Romain Guy | d94533d | 2009-08-17 10:01:15 -0700 | [diff] [blame] | 1160 | child.requestLayout(); |
Romain Guy | d94533d | 2009-08-17 10:01:15 -0700 | [diff] [blame] | 1161 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1162 | } |
| 1163 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1164 | /** |
| 1165 | * Start dragging the specified child |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1166 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1167 | * @param child The child that is being dragged |
| 1168 | */ |
| 1169 | void onDragChild(View child) { |
| 1170 | LayoutParams lp = (LayoutParams) child.getLayoutParams(); |
| 1171 | lp.isDragging = true; |
Patrick Dubroy | de7658b | 2010-09-27 11:15:43 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
| 1174 | /** |
| 1175 | * A drag event has begun over this layout. |
| 1176 | * It may have begun over this layout (in which case onDragChild is called first), |
| 1177 | * or it may have begun on another layout. |
| 1178 | */ |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 1179 | void onDragEnter() { |
Patrick Dubroy | fe6bd87 | 2010-10-13 17:32:10 -0700 | [diff] [blame] | 1180 | if (!mDragging) { |
Patrick Dubroy | fe6bd87 | 2010-10-13 17:32:10 -0700 | [diff] [blame] | 1181 | // Fade in the drag indicators |
| 1182 | if (mCrosshairsAnimator != null) { |
| 1183 | mCrosshairsAnimator.animateIn(); |
| 1184 | } |
Joe Onorato | 4be866d | 2010-10-10 11:26:02 -0700 | [diff] [blame] | 1185 | } |
| 1186 | mDragging = true; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1187 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1188 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1189 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1190 | * Computes a bounding rectangle for a range of cells |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1191 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1192 | * @param cellX X coordinate of upper left corner expressed as a cell position |
| 1193 | * @param cellY Y coordinate of upper left corner expressed as a cell position |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1194 | * @param cellHSpan Width in cells |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1195 | * @param cellVSpan Height in cells |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1196 | * @param resultRect Rect into which to put the results |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1197 | */ |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1198 | public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, RectF resultRect) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1199 | final int cellWidth = mCellWidth; |
| 1200 | final int cellHeight = mCellHeight; |
| 1201 | final int widthGap = mWidthGap; |
| 1202 | final int heightGap = mHeightGap; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1203 | |
| 1204 | final int hStartPadding = getLeftPadding(); |
| 1205 | final int vStartPadding = getTopPadding(); |
| 1206 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1207 | int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap); |
| 1208 | int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap); |
| 1209 | |
| 1210 | int x = hStartPadding + cellX * (cellWidth + widthGap); |
| 1211 | int y = vStartPadding + cellY * (cellHeight + heightGap); |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1212 | |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 1213 | resultRect.set(x, y, x + width, y + height); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1214 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1215 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1216 | /** |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1217 | * Computes the required horizontal and vertical cell spans to always |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1218 | * fit the given rectangle. |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1219 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1220 | * @param width Width in pixels |
| 1221 | * @param height Height in pixels |
Patrick Dubroy | 8f86ddc | 2010-07-16 13:55:32 -0700 | [diff] [blame] | 1222 | * @param result An array of length 2 in which to store the result (may be null). |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1223 | */ |
Patrick Dubroy | 8f86ddc | 2010-07-16 13:55:32 -0700 | [diff] [blame] | 1224 | public int[] rectToCell(int width, int height, int[] result) { |
Michael Jurka | 9987a5c | 2010-10-08 16:58:12 -0700 | [diff] [blame] | 1225 | return rectToCell(getResources(), width, height, result); |
| 1226 | } |
| 1227 | |
| 1228 | public static int[] rectToCell(Resources resources, int width, int height, int[] result) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1229 | // Always assume we're working with the smallest span to make sure we |
| 1230 | // reserve enough space in both orientations. |
Joe Onorato | 79e5626 | 2009-09-21 15:23:04 -0400 | [diff] [blame] | 1231 | int actualWidth = resources.getDimensionPixelSize(R.dimen.workspace_cell_width); |
| 1232 | int actualHeight = resources.getDimensionPixelSize(R.dimen.workspace_cell_height); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1233 | int smallerSize = Math.min(actualWidth, actualHeight); |
Joe Onorato | 79e5626 | 2009-09-21 15:23:04 -0400 | [diff] [blame] | 1234 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1235 | // Always round up to next largest cell |
| 1236 | int spanX = (width + smallerSize) / smallerSize; |
| 1237 | int spanY = (height + smallerSize) / smallerSize; |
Joe Onorato | 79e5626 | 2009-09-21 15:23:04 -0400 | [diff] [blame] | 1238 | |
Patrick Dubroy | 8f86ddc | 2010-07-16 13:55:32 -0700 | [diff] [blame] | 1239 | if (result == null) { |
| 1240 | return new int[] { spanX, spanY }; |
| 1241 | } |
| 1242 | result[0] = spanX; |
| 1243 | result[1] = spanY; |
| 1244 | return result; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1245 | } |
| 1246 | |
Michael Jurka | f12c75c | 2011-01-25 22:41:40 -0800 | [diff] [blame] | 1247 | public int[] cellSpansToSize(int hSpans, int vSpans) { |
| 1248 | int[] size = new int[2]; |
| 1249 | size[0] = hSpans * mCellWidth + (hSpans - 1) * mWidthGap; |
| 1250 | size[1] = vSpans * mCellHeight + (vSpans - 1) * mHeightGap; |
| 1251 | return size; |
| 1252 | } |
| 1253 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1254 | /** |
Patrick Dubroy | 047379a | 2010-12-19 22:02:04 -0800 | [diff] [blame] | 1255 | * Calculate the grid spans needed to fit given item |
| 1256 | */ |
| 1257 | public void calculateSpans(ItemInfo info) { |
| 1258 | final int minWidth; |
| 1259 | final int minHeight; |
| 1260 | |
| 1261 | if (info instanceof LauncherAppWidgetInfo) { |
| 1262 | minWidth = ((LauncherAppWidgetInfo) info).minWidth; |
| 1263 | minHeight = ((LauncherAppWidgetInfo) info).minHeight; |
| 1264 | } else if (info instanceof PendingAddWidgetInfo) { |
| 1265 | minWidth = ((PendingAddWidgetInfo) info).minWidth; |
| 1266 | minHeight = ((PendingAddWidgetInfo) info).minHeight; |
| 1267 | } else { |
| 1268 | // It's not a widget, so it must be 1x1 |
| 1269 | info.spanX = info.spanY = 1; |
| 1270 | return; |
| 1271 | } |
| 1272 | int[] spans = rectToCell(minWidth, minHeight, null); |
| 1273 | info.spanX = spans[0]; |
| 1274 | info.spanY = spans[1]; |
| 1275 | } |
| 1276 | |
| 1277 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1278 | * Find the first vacant cell, if there is one. |
| 1279 | * |
| 1280 | * @param vacant Holds the x and y coordinate of the vacant cell |
| 1281 | * @param spanX Horizontal cell span. |
| 1282 | * @param spanY Vertical cell span. |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1283 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1284 | * @return True if a vacant cell was found |
| 1285 | */ |
| 1286 | public boolean getVacantCell(int[] vacant, int spanX, int spanY) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1287 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1288 | return findVacantCell(vacant, spanX, spanY, mCountX, mCountY, mOccupied); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | static boolean findVacantCell(int[] vacant, int spanX, int spanY, |
| 1292 | int xCount, int yCount, boolean[][] occupied) { |
| 1293 | |
| 1294 | for (int x = 0; x < xCount; x++) { |
| 1295 | for (int y = 0; y < yCount; y++) { |
| 1296 | boolean available = !occupied[x][y]; |
| 1297 | out: for (int i = x; i < x + spanX - 1 && x < xCount; i++) { |
| 1298 | for (int j = y; j < y + spanY - 1 && y < yCount; j++) { |
| 1299 | available = available && !occupied[i][j]; |
| 1300 | if (!available) break out; |
| 1301 | } |
| 1302 | } |
| 1303 | |
| 1304 | if (available) { |
| 1305 | vacant[0] = x; |
| 1306 | vacant[1] = y; |
| 1307 | return true; |
| 1308 | } |
| 1309 | } |
| 1310 | } |
| 1311 | |
| 1312 | return false; |
| 1313 | } |
| 1314 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1315 | private void clearOccupiedCells() { |
| 1316 | for (int x = 0; x < mCountX; x++) { |
| 1317 | for (int y = 0; y < mCountY; y++) { |
| 1318 | mOccupied[x][y] = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1319 | } |
| 1320 | } |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1321 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1322 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1323 | public void onMove(View view, int newCellX, int newCellY) { |
| 1324 | LayoutParams lp = (LayoutParams) view.getLayoutParams(); |
| 1325 | markCellsAsUnoccupiedForView(view); |
| 1326 | markCellsForView(newCellX, newCellY, lp.cellHSpan, lp.cellVSpan, true); |
| 1327 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1328 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1329 | private void markCellsAsOccupiedForView(View view) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 1330 | if (view == null || view.getParent() != mChildren) return; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1331 | LayoutParams lp = (LayoutParams) view.getLayoutParams(); |
| 1332 | markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true); |
| 1333 | } |
| 1334 | |
| 1335 | private void markCellsAsUnoccupiedForView(View view) { |
Michael Jurka | 8c920dd | 2011-01-20 14:16:56 -0800 | [diff] [blame] | 1336 | if (view == null || view.getParent() != mChildren) return; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1337 | LayoutParams lp = (LayoutParams) view.getLayoutParams(); |
| 1338 | markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false); |
| 1339 | } |
| 1340 | |
| 1341 | private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean value) { |
| 1342 | for (int x = cellX; x < cellX + spanX && x < mCountX; x++) { |
| 1343 | for (int y = cellY; y < cellY + spanY && y < mCountY; y++) { |
| 1344 | mOccupied[x][y] = value; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1345 | } |
| 1346 | } |
| 1347 | } |
| 1348 | |
| 1349 | @Override |
| 1350 | public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) { |
| 1351 | return new CellLayout.LayoutParams(getContext(), attrs); |
| 1352 | } |
| 1353 | |
| 1354 | @Override |
| 1355 | protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { |
| 1356 | return p instanceof CellLayout.LayoutParams; |
| 1357 | } |
| 1358 | |
| 1359 | @Override |
| 1360 | protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) { |
| 1361 | return new CellLayout.LayoutParams(p); |
| 1362 | } |
| 1363 | |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1364 | public static class CellLayoutAnimationController extends LayoutAnimationController { |
| 1365 | public CellLayoutAnimationController(Animation animation, float delay) { |
| 1366 | super(animation, delay); |
| 1367 | } |
| 1368 | |
| 1369 | @Override |
| 1370 | protected long getDelayForView(View view) { |
| 1371 | return (int) (Math.random() * 150); |
| 1372 | } |
| 1373 | } |
| 1374 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1375 | public static class LayoutParams extends ViewGroup.MarginLayoutParams { |
| 1376 | /** |
| 1377 | * Horizontal location of the item in the grid. |
| 1378 | */ |
| 1379 | @ViewDebug.ExportedProperty |
| 1380 | public int cellX; |
| 1381 | |
| 1382 | /** |
| 1383 | * Vertical location of the item in the grid. |
| 1384 | */ |
| 1385 | @ViewDebug.ExportedProperty |
| 1386 | public int cellY; |
| 1387 | |
| 1388 | /** |
| 1389 | * Number of cells spanned horizontally by the item. |
| 1390 | */ |
| 1391 | @ViewDebug.ExportedProperty |
| 1392 | public int cellHSpan; |
| 1393 | |
| 1394 | /** |
| 1395 | * Number of cells spanned vertically by the item. |
| 1396 | */ |
| 1397 | @ViewDebug.ExportedProperty |
| 1398 | public int cellVSpan; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1399 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1400 | /** |
| 1401 | * Is this item currently being dragged |
| 1402 | */ |
| 1403 | public boolean isDragging; |
| 1404 | |
| 1405 | // X coordinate of the view in the layout. |
| 1406 | @ViewDebug.ExportedProperty |
| 1407 | int x; |
| 1408 | // Y coordinate of the view in the layout. |
| 1409 | @ViewDebug.ExportedProperty |
| 1410 | int y; |
| 1411 | |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 1412 | /** |
| 1413 | * The old X coordinate of this item, relative to its current parent. |
| 1414 | * Used to animate the item into its new position. |
| 1415 | */ |
| 1416 | int oldX; |
| 1417 | |
| 1418 | /** |
| 1419 | * The old Y coordinate of this item, relative to its current parent. |
| 1420 | * Used to animate the item into its new position. |
| 1421 | */ |
| 1422 | int oldY; |
| 1423 | |
Romain Guy | 84f296c | 2009-11-04 15:00:44 -0800 | [diff] [blame] | 1424 | boolean dropped; |
Romain Guy | fcb9e71 | 2009-10-02 16:06:52 -0700 | [diff] [blame] | 1425 | |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1426 | boolean animateDrop; |
| 1427 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1428 | public LayoutParams(Context c, AttributeSet attrs) { |
| 1429 | super(c, attrs); |
| 1430 | cellHSpan = 1; |
| 1431 | cellVSpan = 1; |
| 1432 | } |
| 1433 | |
| 1434 | public LayoutParams(ViewGroup.LayoutParams source) { |
| 1435 | super(source); |
| 1436 | cellHSpan = 1; |
| 1437 | cellVSpan = 1; |
| 1438 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1439 | |
| 1440 | public LayoutParams(LayoutParams source) { |
| 1441 | super(source); |
| 1442 | this.cellX = source.cellX; |
| 1443 | this.cellY = source.cellY; |
| 1444 | this.cellHSpan = source.cellHSpan; |
| 1445 | this.cellVSpan = source.cellVSpan; |
| 1446 | } |
| 1447 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1448 | public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) { |
Romain Guy | 8f19cdd | 2010-01-08 15:07:00 -0800 | [diff] [blame] | 1449 | super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1450 | this.cellX = cellX; |
| 1451 | this.cellY = cellY; |
| 1452 | this.cellHSpan = cellHSpan; |
| 1453 | this.cellVSpan = cellVSpan; |
| 1454 | } |
| 1455 | |
| 1456 | public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap, |
| 1457 | int hStartPadding, int vStartPadding) { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1458 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1459 | final int myCellHSpan = cellHSpan; |
| 1460 | final int myCellVSpan = cellVSpan; |
| 1461 | final int myCellX = cellX; |
| 1462 | final int myCellY = cellY; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1463 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1464 | width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) - |
| 1465 | leftMargin - rightMargin; |
| 1466 | height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) - |
| 1467 | topMargin - bottomMargin; |
| 1468 | |
| 1469 | x = hStartPadding + myCellX * (cellWidth + widthGap) + leftMargin; |
| 1470 | y = vStartPadding + myCellY * (cellHeight + heightGap) + topMargin; |
| 1471 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1472 | |
| 1473 | public String toString() { |
| 1474 | return "(" + this.cellX + ", " + this.cellY + ")"; |
| 1475 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1476 | } |
| 1477 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1478 | // This class stores info for two purposes: |
| 1479 | // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY, |
| 1480 | // its spanX, spanY, and the screen it is on |
| 1481 | // 2. When long clicking on an empty cell in a CellLayout, we save information about the |
| 1482 | // cellX and cellY coordinates and which page was clicked. We then set this as a tag on |
| 1483 | // the CellLayout that was long clicked |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1484 | static final class CellInfo implements ContextMenu.ContextMenuInfo { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1485 | View cell; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 1486 | int cellX = -1; |
| 1487 | int cellY = -1; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1488 | int spanX; |
| 1489 | int spanY; |
| 1490 | int screen; |
| 1491 | boolean valid; |
| 1492 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1493 | @Override |
| 1494 | public String toString() { |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 1495 | return "Cell[view=" + (cell == null ? "null" : cell.getClass()) |
| 1496 | + ", x=" + cellX + ", y=" + cellY + "]"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1497 | } |
| 1498 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1499 | } |