blob: a472225a0f916949d0b516055ffe932317e639da [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;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080023import android.graphics.Rect;
Michael Jurka137142e2011-01-05 20:57:04 -080024import android.graphics.Region;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080025import android.graphics.Region.Op;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080027import android.util.AttributeSet;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080028import android.view.MotionEvent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080029import android.widget.TextView;
Romain Guyedcce092010-03-04 13:03:17 -080030
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031/**
32 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
33 * because we want to make the bubble taller than the text and TextView's clip is
34 * too aggressive.
35 */
Michael Jurka08ee7702011-08-11 16:53:35 -070036public class BubbleTextView extends TextView {
Winson Chung656d11c2010-11-29 17:15:47 -080037 static final float CORNER_RADIUS = 4.0f;
Winson Chung88127032010-12-13 12:11:33 -080038 static final float SHADOW_LARGE_RADIUS = 4.0f;
39 static final float SHADOW_SMALL_RADIUS = 1.75f;
40 static final float SHADOW_Y_OFFSET = 2.0f;
Winson Chungc7aef8c2011-09-15 18:53:04 -070041 static final int SHADOW_LARGE_COLOUR = 0xDD000000;
42 static final int SHADOW_SMALL_COLOUR = 0xCC000000;
Winson Chung656d11c2010-11-29 17:15:47 -080043 static final float PADDING_H = 8.0f;
44 static final float PADDING_V = 3.0f;
45
Winson Chunge22a8e92010-11-12 13:40:58 -080046 private int mPrevAlpha = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047
Michael Jurka38b4f7c2010-12-14 16:46:39 -080048 private final HolographicOutlineHelper mOutlineHelper = new HolographicOutlineHelper();
49 private final Canvas mTempCanvas = new Canvas();
50 private final Rect mTempRect = new Rect();
Michael Jurka38b4f7c2010-12-14 16:46:39 -080051 private boolean mDidInvalidateForPressedState;
52 private Bitmap mPressedOrFocusedBackground;
53 private int mFocusedOutlineColor;
54 private int mFocusedGlowColor;
55 private int mPressedOutlineColor;
56 private int mPressedGlowColor;
57
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058 private boolean mBackgroundSizeChanged;
59 private Drawable mBackground;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060
Michael Jurkaddd62e92011-02-16 17:49:14 -080061 private boolean mStayPressed;
Winson Chung88f33452012-02-23 15:23:44 -080062 private CheckLongPressHelper mLongPressHelper;
Michael Jurkaddd62e92011-02-16 17:49:14 -080063
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064 public BubbleTextView(Context context) {
65 super(context);
66 init();
67 }
68
69 public BubbleTextView(Context context, AttributeSet attrs) {
70 super(context, attrs);
71 init();
72 }
73
74 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
75 super(context, attrs, defStyle);
76 init();
77 }
78
79 private void init() {
Winson Chung88f33452012-02-23 15:23:44 -080080 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081 mBackground = getBackground();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082
Winson Chung656d11c2010-11-29 17:15:47 -080083 final Resources res = getContext().getResources();
Winson Chung7d3810d2011-10-07 13:11:56 -070084 mFocusedOutlineColor = mFocusedGlowColor = mPressedOutlineColor = mPressedGlowColor =
Michael Feldstein52ee3ec2013-09-25 18:40:40 -070085 res.getColor(android.R.color.white);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -080086
87 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088 }
89
Michael Jurka67b2f6c2010-11-17 12:33:46 -080090 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
91 Bitmap b = info.getIcon(iconCache);
92
93 setCompoundDrawablesWithIntrinsicBounds(null,
94 new FastBitmapDrawable(b),
95 null, null);
96 setText(info.title);
Kenny Guy4d3aca02014-06-18 16:15:53 +010097 if (info.contentDescription != null) {
98 setContentDescription(info.contentDescription);
99 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800100 setTag(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800101 }
102
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800103 @Override
104 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700105 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800106 mBackgroundSizeChanged = true;
107 }
108 return super.setFrame(left, top, right, bottom);
109 }
110
111 @Override
112 protected boolean verifyDrawable(Drawable who) {
113 return who == mBackground || super.verifyDrawable(who);
114 }
115
116 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700117 public void setTag(Object tag) {
118 if (tag != null) {
119 LauncherModel.checkItemInfo((ItemInfo) tag);
120 }
121 super.setTag(tag);
122 }
123
124 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800125 protected void drawableStateChanged() {
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800126 if (isPressed()) {
127 // In this case, we have already created the pressed outline on ACTION_DOWN,
128 // so we just need to do an invalidate to trigger draw
129 if (!mDidInvalidateForPressedState) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800130 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800131 }
132 } else {
133 // Otherwise, either clear the pressed/focused background, or create a background
134 // for the focused state
135 final boolean backgroundEmptyBefore = mPressedOrFocusedBackground == null;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800136 if (!mStayPressed) {
137 mPressedOrFocusedBackground = null;
138 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800139 if (isFocused()) {
Gilles Debunnec7869522011-11-28 18:03:56 -0800140 if (getLayout() == null) {
Patrick Dubroya017c032011-03-09 15:58:32 -0800141 // In some cases, we get focus before we have been layed out. Set the
142 // background to null so that it will get created when the view is drawn.
143 mPressedOrFocusedBackground = null;
144 } else {
145 mPressedOrFocusedBackground = createGlowingOutline(
146 mTempCanvas, mFocusedGlowColor, mFocusedOutlineColor);
147 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800148 mStayPressed = false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800149 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800150 }
151 final boolean backgroundEmptyNow = mPressedOrFocusedBackground == null;
152 if (!backgroundEmptyBefore && backgroundEmptyNow) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800153 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800154 }
155 }
156
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157 Drawable d = mBackground;
158 if (d != null && d.isStateful()) {
159 d.setState(getDrawableState());
160 }
161 super.drawableStateChanged();
162 }
163
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800164 /**
Patrick Dubroycd953712011-02-28 15:16:42 -0800165 * Draw this BubbleTextView into the given Canvas.
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800166 *
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800167 * @param destCanvas the canvas to draw on
168 * @param padding the horizontal and vertical padding to use when drawing
169 */
170 private void drawWithPadding(Canvas destCanvas, int padding) {
171 final Rect clipRect = mTempRect;
172 getDrawingRect(clipRect);
173
174 // adjust the clip rect so that we don't include the text label
175 clipRect.bottom =
176 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0);
177
178 // Draw the View into the bitmap.
179 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
180 // they set scrollX and scrollY to large values to achieve centered text
181 destCanvas.save();
Winson Chungeecf02d2012-03-02 17:14:58 -0800182 destCanvas.scale(getScaleX(), getScaleY(),
183 (getWidth() + padding) / 2, (getHeight() + padding) / 2);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800184 destCanvas.translate(-getScrollX() + padding / 2, -getScrollY() + padding / 2);
185 destCanvas.clipRect(clipRect, Op.REPLACE);
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800186 draw(destCanvas);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800187 destCanvas.restore();
188 }
189
190 /**
191 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
192 * Responsibility for the bitmap is transferred to the caller.
193 */
194 private Bitmap createGlowingOutline(Canvas canvas, int outlineColor, int glowColor) {
195 final int padding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
196 final Bitmap b = Bitmap.createBitmap(
197 getWidth() + padding, getHeight() + padding, Bitmap.Config.ARGB_8888);
198
199 canvas.setBitmap(b);
200 drawWithPadding(canvas, padding);
201 mOutlineHelper.applyExtraThickExpensiveOutlineWithBlur(b, canvas, glowColor, outlineColor);
Adam Cohenaaf473c2011-08-03 12:02:47 -0700202 canvas.setBitmap(null);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800203
204 return b;
205 }
206
207 @Override
208 public boolean onTouchEvent(MotionEvent event) {
209 // Call the superclass onTouchEvent first, because sometimes it changes the state to
210 // isPressed() on an ACTION_UP
211 boolean result = super.onTouchEvent(event);
212
213 switch (event.getAction()) {
214 case MotionEvent.ACTION_DOWN:
215 // So that the pressed outline is visible immediately when isPressed() is true,
216 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
217 // to create it)
218 if (mPressedOrFocusedBackground == null) {
219 mPressedOrFocusedBackground = createGlowingOutline(
220 mTempCanvas, mPressedGlowColor, mPressedOutlineColor);
221 }
222 // Invalidate so the pressed state is visible, or set a flag so we know that we
223 // have to call invalidate as soon as the state is "pressed"
224 if (isPressed()) {
225 mDidInvalidateForPressedState = true;
Michael Jurkae6235dd2011-10-04 15:02:05 -0700226 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800227 } else {
228 mDidInvalidateForPressedState = false;
229 }
Winson Chung88f33452012-02-23 15:23:44 -0800230
231 mLongPressHelper.postCheckForLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800232 break;
233 case MotionEvent.ACTION_CANCEL:
234 case MotionEvent.ACTION_UP:
235 // If we've touched down and up on an item, and it's still not "pressed", then
236 // destroy the pressed outline
237 if (!isPressed()) {
238 mPressedOrFocusedBackground = null;
239 }
Winson Chung88f33452012-02-23 15:23:44 -0800240
241 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800242 break;
243 }
244 return result;
245 }
246
Michael Jurkaddd62e92011-02-16 17:49:14 -0800247 void setStayPressed(boolean stayPressed) {
248 mStayPressed = stayPressed;
249 if (!stayPressed) {
250 mPressedOrFocusedBackground = null;
251 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800252 setCellLayoutPressedOrFocusedIcon();
253 }
254
255 void setCellLayoutPressedOrFocusedIcon() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700256 if (getParent() instanceof ShortcutAndWidgetContainer) {
257 ShortcutAndWidgetContainer parent = (ShortcutAndWidgetContainer) getParent();
Adam Cohen76fc0852011-06-17 13:26:23 -0700258 if (parent != null) {
259 CellLayout layout = (CellLayout) parent.getParent();
260 layout.setPressedOrFocusedIcon((mPressedOrFocusedBackground != null) ? this : null);
261 }
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700262 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800263 }
264
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700265 void clearPressedOrFocusedBackground() {
266 mPressedOrFocusedBackground = null;
267 setCellLayoutPressedOrFocusedIcon();
268 }
269
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800270 Bitmap getPressedOrFocusedBackground() {
271 return mPressedOrFocusedBackground;
272 }
273
274 int getPressedOrFocusedBackgroundPadding() {
275 return HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS / 2;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800276 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800277
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278 @Override
279 public void draw(Canvas canvas) {
Michael Jurkabdb5c532011-02-01 15:05:06 -0800280 final Drawable background = mBackground;
281 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700282 final int scrollX = getScrollX();
283 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800284
Michael Jurkabdb5c532011-02-01 15:05:06 -0800285 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700286 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800287 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800289
290 if ((scrollX | scrollY) == 0) {
291 background.draw(canvas);
292 } else {
293 canvas.translate(scrollX, scrollY);
294 background.draw(canvas);
295 canvas.translate(-scrollX, -scrollY);
296 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800298
299 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800300 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800301 getPaint().clearShadowLayer();
302 super.draw(canvas);
303 return;
304 }
305
Michael Jurkabdb5c532011-02-01 15:05:06 -0800306 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800307 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800308 super.draw(canvas);
309 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700310 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
311 getScrollX() + getWidth(),
312 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800313 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800314 super.draw(canvas);
315 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800316 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400317
318 @Override
319 protected void onAttachedToWindow() {
320 super.onAttachedToWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800321 if (mBackground != null) mBackground.setCallback(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400322 }
323
324 @Override
325 protected void onDetachedFromWindow() {
326 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800327 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400328 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700329
330 @Override
331 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800332 if (mPrevAlpha != alpha) {
333 mPrevAlpha = alpha;
Winson Chunge22a8e92010-11-12 13:40:58 -0800334 super.onSetAlpha(alpha);
335 }
336 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700337 }
Winson Chung88f33452012-02-23 15:23:44 -0800338
339 @Override
340 public void cancelLongPress() {
341 super.cancelLongPress();
342
343 mLongPressHelper.cancelLongPress();
344 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800345}