blob: 623c6ff0b485a1ebfdbd4074b269e32d106600e9 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
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 Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019import android.content.Context;
Winson Chung656d11c2010-11-29 17:15:47 -080020import android.content.res.Resources;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080021import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.graphics.Canvas;
Winson Chung656d11c2010-11-29 17:15:47 -080023import android.graphics.Color;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.graphics.Paint;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080025import android.graphics.Rect;
Michael Jurka137142e2011-01-05 20:57:04 -080026import android.graphics.Region;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080027import android.graphics.Region.Op;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080029import android.util.AttributeSet;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080030import android.view.MotionEvent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080031import android.widget.TextView;
Romain Guyedcce092010-03-04 13:03:17 -080032
Michael Jurka92f3d462011-11-22 21:02:29 -080033import com.android.launcher.R;
34
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035/**
36 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
37 * because we want to make the bubble taller than the text and TextView's clip is
38 * too aggressive.
39 */
Michael Jurka08ee7702011-08-11 16:53:35 -070040public class BubbleTextView extends TextView {
Winson Chung656d11c2010-11-29 17:15:47 -080041 static final float CORNER_RADIUS = 4.0f;
Winson Chung88127032010-12-13 12:11:33 -080042 static final float SHADOW_LARGE_RADIUS = 4.0f;
43 static final float SHADOW_SMALL_RADIUS = 1.75f;
44 static final float SHADOW_Y_OFFSET = 2.0f;
Winson Chungc7aef8c2011-09-15 18:53:04 -070045 static final int SHADOW_LARGE_COLOUR = 0xDD000000;
46 static final int SHADOW_SMALL_COLOUR = 0xCC000000;
Winson Chung656d11c2010-11-29 17:15:47 -080047 static final float PADDING_H = 8.0f;
48 static final float PADDING_V = 3.0f;
49
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050 private Paint mPaint;
Winson Chung656d11c2010-11-29 17:15:47 -080051 private float mBubbleColorAlpha;
Winson Chunge22a8e92010-11-12 13:40:58 -080052 private int mPrevAlpha = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053
Michael Jurka38b4f7c2010-12-14 16:46:39 -080054 private final HolographicOutlineHelper mOutlineHelper = new HolographicOutlineHelper();
55 private final Canvas mTempCanvas = new Canvas();
56 private final Rect mTempRect = new Rect();
Michael Jurka38b4f7c2010-12-14 16:46:39 -080057 private boolean mDidInvalidateForPressedState;
58 private Bitmap mPressedOrFocusedBackground;
59 private int mFocusedOutlineColor;
60 private int mFocusedGlowColor;
61 private int mPressedOutlineColor;
62 private int mPressedGlowColor;
63
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064 private boolean mBackgroundSizeChanged;
65 private Drawable mBackground;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066
Michael Jurkaddd62e92011-02-16 17:49:14 -080067 private boolean mStayPressed;
Winson Chung88f33452012-02-23 15:23:44 -080068 private CheckLongPressHelper mLongPressHelper;
Michael Jurkaddd62e92011-02-16 17:49:14 -080069
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070 public BubbleTextView(Context context) {
71 super(context);
72 init();
73 }
74
75 public BubbleTextView(Context context, AttributeSet attrs) {
76 super(context, attrs);
77 init();
78 }
79
80 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
81 super(context, attrs, defStyle);
82 init();
83 }
84
85 private void init() {
Winson Chung88f33452012-02-23 15:23:44 -080086 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087 mBackground = getBackground();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088
Winson Chung656d11c2010-11-29 17:15:47 -080089 final Resources res = getContext().getResources();
90 int bubbleColor = res.getColor(R.color.bubble_dark_background);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091 mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
Winson Chung656d11c2010-11-29 17:15:47 -080092 mPaint.setColor(bubbleColor);
93 mBubbleColorAlpha = Color.alpha(bubbleColor) / 255.0f;
Winson Chung7d3810d2011-10-07 13:11:56 -070094 mFocusedOutlineColor = mFocusedGlowColor = mPressedOutlineColor = mPressedGlowColor =
95 res.getColor(android.R.color.holo_blue_light);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -080096
97 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098 }
99
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800100 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
101 Bitmap b = info.getIcon(iconCache);
102
103 setCompoundDrawablesWithIntrinsicBounds(null,
104 new FastBitmapDrawable(b),
105 null, null);
106 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800107 setTag(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800108 }
109
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800110 @Override
111 protected boolean setFrame(int left, int top, int right, int bottom) {
112 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
113 mBackgroundSizeChanged = true;
114 }
115 return super.setFrame(left, top, right, bottom);
116 }
117
118 @Override
119 protected boolean verifyDrawable(Drawable who) {
120 return who == mBackground || super.verifyDrawable(who);
121 }
122
123 @Override
124 protected void drawableStateChanged() {
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800125 if (isPressed()) {
126 // In this case, we have already created the pressed outline on ACTION_DOWN,
127 // so we just need to do an invalidate to trigger draw
128 if (!mDidInvalidateForPressedState) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800129 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800130 }
131 } else {
132 // Otherwise, either clear the pressed/focused background, or create a background
133 // for the focused state
134 final boolean backgroundEmptyBefore = mPressedOrFocusedBackground == null;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800135 if (!mStayPressed) {
136 mPressedOrFocusedBackground = null;
137 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800138 if (isFocused()) {
Gilles Debunnec7869522011-11-28 18:03:56 -0800139 if (getLayout() == null) {
Patrick Dubroya017c032011-03-09 15:58:32 -0800140 // In some cases, we get focus before we have been layed out. Set the
141 // background to null so that it will get created when the view is drawn.
142 mPressedOrFocusedBackground = null;
143 } else {
144 mPressedOrFocusedBackground = createGlowingOutline(
145 mTempCanvas, mFocusedGlowColor, mFocusedOutlineColor);
146 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800147 mStayPressed = false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800148 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800149 }
150 final boolean backgroundEmptyNow = mPressedOrFocusedBackground == null;
151 if (!backgroundEmptyBefore && backgroundEmptyNow) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800152 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800153 }
154 }
155
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 Drawable d = mBackground;
157 if (d != null && d.isStateful()) {
158 d.setState(getDrawableState());
159 }
160 super.drawableStateChanged();
161 }
162
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800163 /**
Patrick Dubroycd953712011-02-28 15:16:42 -0800164 * Draw this BubbleTextView into the given Canvas.
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800165 *
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800166 * @param destCanvas the canvas to draw on
167 * @param padding the horizontal and vertical padding to use when drawing
168 */
169 private void drawWithPadding(Canvas destCanvas, int padding) {
170 final Rect clipRect = mTempRect;
171 getDrawingRect(clipRect);
172
173 // adjust the clip rect so that we don't include the text label
174 clipRect.bottom =
175 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0);
176
177 // Draw the View into the bitmap.
178 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
179 // they set scrollX and scrollY to large values to achieve centered text
180 destCanvas.save();
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800181 destCanvas.scale(getScaleX(), getScaleY(), getWidth() / 2, getHeight() / 2);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800182 destCanvas.translate(-getScrollX() + padding / 2, -getScrollY() + padding / 2);
183 destCanvas.clipRect(clipRect, Op.REPLACE);
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800184 draw(destCanvas);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800185 destCanvas.restore();
186 }
187
188 /**
189 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
190 * Responsibility for the bitmap is transferred to the caller.
191 */
192 private Bitmap createGlowingOutline(Canvas canvas, int outlineColor, int glowColor) {
193 final int padding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
194 final Bitmap b = Bitmap.createBitmap(
195 getWidth() + padding, getHeight() + padding, Bitmap.Config.ARGB_8888);
196
197 canvas.setBitmap(b);
198 drawWithPadding(canvas, padding);
199 mOutlineHelper.applyExtraThickExpensiveOutlineWithBlur(b, canvas, glowColor, outlineColor);
Adam Cohenaaf473c2011-08-03 12:02:47 -0700200 canvas.setBitmap(null);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800201
202 return b;
203 }
204
205 @Override
206 public boolean onTouchEvent(MotionEvent event) {
207 // Call the superclass onTouchEvent first, because sometimes it changes the state to
208 // isPressed() on an ACTION_UP
209 boolean result = super.onTouchEvent(event);
210
211 switch (event.getAction()) {
212 case MotionEvent.ACTION_DOWN:
213 // So that the pressed outline is visible immediately when isPressed() is true,
214 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
215 // to create it)
216 if (mPressedOrFocusedBackground == null) {
217 mPressedOrFocusedBackground = createGlowingOutline(
218 mTempCanvas, mPressedGlowColor, mPressedOutlineColor);
219 }
220 // Invalidate so the pressed state is visible, or set a flag so we know that we
221 // have to call invalidate as soon as the state is "pressed"
222 if (isPressed()) {
223 mDidInvalidateForPressedState = true;
Michael Jurkae6235dd2011-10-04 15:02:05 -0700224 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800225 } else {
226 mDidInvalidateForPressedState = false;
227 }
Winson Chung88f33452012-02-23 15:23:44 -0800228
229 mLongPressHelper.postCheckForLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800230 break;
231 case MotionEvent.ACTION_CANCEL:
232 case MotionEvent.ACTION_UP:
233 // If we've touched down and up on an item, and it's still not "pressed", then
234 // destroy the pressed outline
235 if (!isPressed()) {
236 mPressedOrFocusedBackground = null;
237 }
Winson Chung88f33452012-02-23 15:23:44 -0800238
239 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800240 break;
241 }
242 return result;
243 }
244
Michael Jurkaddd62e92011-02-16 17:49:14 -0800245 void setStayPressed(boolean stayPressed) {
246 mStayPressed = stayPressed;
247 if (!stayPressed) {
248 mPressedOrFocusedBackground = null;
249 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800250 setCellLayoutPressedOrFocusedIcon();
251 }
252
253 void setCellLayoutPressedOrFocusedIcon() {
Adam Cohen76fc0852011-06-17 13:26:23 -0700254 if (getParent() instanceof CellLayoutChildren) {
255 CellLayoutChildren parent = (CellLayoutChildren) getParent();
256 if (parent != null) {
257 CellLayout layout = (CellLayout) parent.getParent();
258 layout.setPressedOrFocusedIcon((mPressedOrFocusedBackground != null) ? this : null);
259 }
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700260 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800261 }
262
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700263 void clearPressedOrFocusedBackground() {
264 mPressedOrFocusedBackground = null;
265 setCellLayoutPressedOrFocusedIcon();
266 }
267
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800268 Bitmap getPressedOrFocusedBackground() {
269 return mPressedOrFocusedBackground;
270 }
271
272 int getPressedOrFocusedBackgroundPadding() {
273 return HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS / 2;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800274 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800275
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276 @Override
277 public void draw(Canvas canvas) {
Michael Jurkabdb5c532011-02-01 15:05:06 -0800278 final Drawable background = mBackground;
279 if (background != null) {
280 final int scrollX = mScrollX;
281 final int scrollY = mScrollY;
Winson Chung88127032010-12-13 12:11:33 -0800282
Michael Jurkabdb5c532011-02-01 15:05:06 -0800283 if (mBackgroundSizeChanged) {
284 background.setBounds(0, 0, mRight - mLeft, mBottom - mTop);
285 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800287
288 if ((scrollX | scrollY) == 0) {
289 background.draw(canvas);
290 } else {
291 canvas.translate(scrollX, scrollY);
292 background.draw(canvas);
293 canvas.translate(-scrollX, -scrollY);
294 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800296
297 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800298 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800299 getPaint().clearShadowLayer();
300 super.draw(canvas);
301 return;
302 }
303
Michael Jurkabdb5c532011-02-01 15:05:06 -0800304 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800305 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800306 super.draw(canvas);
307 canvas.save(Canvas.CLIP_SAVE_FLAG);
308 canvas.clipRect(mScrollX, mScrollY + getExtendedPaddingTop(), mScrollX + getWidth(),
Winson Chung09693002011-02-03 23:56:47 -0800309 mScrollY + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800310 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800311 super.draw(canvas);
312 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800313 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400314
315 @Override
316 protected void onAttachedToWindow() {
317 super.onAttachedToWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800318 if (mBackground != null) mBackground.setCallback(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400319 }
320
321 @Override
322 protected void onDetachedFromWindow() {
323 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800324 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400325 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700326
327 @Override
328 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800329 if (mPrevAlpha != alpha) {
330 mPrevAlpha = alpha;
Winson Chung656d11c2010-11-29 17:15:47 -0800331 mPaint.setAlpha((int) (alpha * mBubbleColorAlpha));
Winson Chunge22a8e92010-11-12 13:40:58 -0800332 super.onSetAlpha(alpha);
333 }
334 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700335 }
Winson Chung88f33452012-02-23 15:23:44 -0800336
337 @Override
338 public void cancelLongPress() {
339 super.cancelLongPress();
340
341 mLongPressHelper.cancelLongPress();
342 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800343}