blob: bb6903d431883e0537196206bb894cae03ff4c7b [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
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
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;
Winson Chung5f8afe62013-08-12 16:19:28 -070028import android.util.TypedValue;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080029import android.view.MotionEvent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080030import android.widget.TextView;
Romain Guyedcce092010-03-04 13:03:17 -080031
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032/**
33 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
34 * because we want to make the bubble taller than the text and TextView's clip is
35 * too aggressive.
36 */
Michael Jurka08ee7702011-08-11 16:53:35 -070037public class BubbleTextView extends TextView {
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
Daniel Sandlere4f98912013-06-25 15:13:26 -040048 private HolographicOutlineHelper mOutlineHelper;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080049 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
Winson Chung5f8afe62013-08-12 16:19:28 -070058 private boolean mIsTextVisible;
59
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060 private boolean mBackgroundSizeChanged;
61 private Drawable mBackground;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062
Michael Jurkaddd62e92011-02-16 17:49:14 -080063 private boolean mStayPressed;
Winson Chung88f33452012-02-23 15:23:44 -080064 private CheckLongPressHelper mLongPressHelper;
Michael Jurkaddd62e92011-02-16 17:49:14 -080065
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066 public BubbleTextView(Context context) {
67 super(context);
68 init();
69 }
70
71 public BubbleTextView(Context context, AttributeSet attrs) {
72 super(context, attrs);
73 init();
74 }
75
76 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
77 super(context, attrs, defStyle);
78 init();
79 }
80
Winson Chung5f8afe62013-08-12 16:19:28 -070081 public void onFinishInflate() {
82 super.onFinishInflate();
83
84 // Ensure we are using the right text size
85 LauncherAppState app = LauncherAppState.getInstance();
86 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
87 setTextSize(TypedValue.COMPLEX_UNIT_SP, grid.iconTextSize);
88 }
89
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090 private void init() {
Winson Chung88f33452012-02-23 15:23:44 -080091 mLongPressHelper = new CheckLongPressHelper(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092 mBackground = getBackground();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093
Daniel Sandlere4f98912013-06-25 15:13:26 -040094 mOutlineHelper = HolographicOutlineHelper.obtain(getContext());
95
Winson Chung656d11c2010-11-29 17:15:47 -080096 final Resources res = getContext().getResources();
Winson Chung7d3810d2011-10-07 13:11:56 -070097 mFocusedOutlineColor = mFocusedGlowColor = mPressedOutlineColor = mPressedGlowColor =
98 res.getColor(android.R.color.holo_blue_light);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -080099
100 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800101 }
102
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800103 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
104 Bitmap b = info.getIcon(iconCache);
105
106 setCompoundDrawablesWithIntrinsicBounds(null,
107 new FastBitmapDrawable(b),
108 null, null);
109 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800110 setTag(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800111 }
112
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800113 @Override
114 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700115 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116 mBackgroundSizeChanged = true;
117 }
118 return super.setFrame(left, top, right, bottom);
119 }
120
121 @Override
122 protected boolean verifyDrawable(Drawable who) {
123 return who == mBackground || super.verifyDrawable(who);
124 }
125
126 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700127 public void setTag(Object tag) {
128 if (tag != null) {
129 LauncherModel.checkItemInfo((ItemInfo) tag);
130 }
131 super.setTag(tag);
132 }
133
134 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135 protected void drawableStateChanged() {
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800136 if (isPressed()) {
137 // In this case, we have already created the pressed outline on ACTION_DOWN,
138 // so we just need to do an invalidate to trigger draw
139 if (!mDidInvalidateForPressedState) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800140 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800141 }
142 } else {
143 // Otherwise, either clear the pressed/focused background, or create a background
144 // for the focused state
145 final boolean backgroundEmptyBefore = mPressedOrFocusedBackground == null;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800146 if (!mStayPressed) {
147 mPressedOrFocusedBackground = null;
148 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800149 if (isFocused()) {
Gilles Debunnec7869522011-11-28 18:03:56 -0800150 if (getLayout() == null) {
Patrick Dubroya017c032011-03-09 15:58:32 -0800151 // In some cases, we get focus before we have been layed out. Set the
152 // background to null so that it will get created when the view is drawn.
153 mPressedOrFocusedBackground = null;
154 } else {
155 mPressedOrFocusedBackground = createGlowingOutline(
156 mTempCanvas, mFocusedGlowColor, mFocusedOutlineColor);
157 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800158 mStayPressed = false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800159 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800160 }
161 final boolean backgroundEmptyNow = mPressedOrFocusedBackground == null;
162 if (!backgroundEmptyBefore && backgroundEmptyNow) {
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800163 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800164 }
165 }
166
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 Drawable d = mBackground;
168 if (d != null && d.isStateful()) {
169 d.setState(getDrawableState());
170 }
171 super.drawableStateChanged();
172 }
173
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800174 /**
Patrick Dubroycd953712011-02-28 15:16:42 -0800175 * Draw this BubbleTextView into the given Canvas.
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800176 *
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800177 * @param destCanvas the canvas to draw on
178 * @param padding the horizontal and vertical padding to use when drawing
179 */
180 private void drawWithPadding(Canvas destCanvas, int padding) {
181 final Rect clipRect = mTempRect;
182 getDrawingRect(clipRect);
183
184 // adjust the clip rect so that we don't include the text label
185 clipRect.bottom =
186 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0);
187
188 // Draw the View into the bitmap.
189 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
190 // they set scrollX and scrollY to large values to achieve centered text
191 destCanvas.save();
Winson Chungeecf02d2012-03-02 17:14:58 -0800192 destCanvas.scale(getScaleX(), getScaleY(),
193 (getWidth() + padding) / 2, (getHeight() + padding) / 2);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800194 destCanvas.translate(-getScrollX() + padding / 2, -getScrollY() + padding / 2);
195 destCanvas.clipRect(clipRect, Op.REPLACE);
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800196 draw(destCanvas);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800197 destCanvas.restore();
198 }
199
200 /**
201 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
202 * Responsibility for the bitmap is transferred to the caller.
203 */
204 private Bitmap createGlowingOutline(Canvas canvas, int outlineColor, int glowColor) {
Daniel Sandlere4f98912013-06-25 15:13:26 -0400205 final int padding = mOutlineHelper.mMaxOuterBlurRadius;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800206 final Bitmap b = Bitmap.createBitmap(
207 getWidth() + padding, getHeight() + padding, Bitmap.Config.ARGB_8888);
208
209 canvas.setBitmap(b);
210 drawWithPadding(canvas, padding);
211 mOutlineHelper.applyExtraThickExpensiveOutlineWithBlur(b, canvas, glowColor, outlineColor);
Adam Cohenaaf473c2011-08-03 12:02:47 -0700212 canvas.setBitmap(null);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800213
214 return b;
215 }
216
217 @Override
218 public boolean onTouchEvent(MotionEvent event) {
219 // Call the superclass onTouchEvent first, because sometimes it changes the state to
220 // isPressed() on an ACTION_UP
221 boolean result = super.onTouchEvent(event);
222
223 switch (event.getAction()) {
224 case MotionEvent.ACTION_DOWN:
225 // So that the pressed outline is visible immediately when isPressed() is true,
226 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
227 // to create it)
228 if (mPressedOrFocusedBackground == null) {
229 mPressedOrFocusedBackground = createGlowingOutline(
230 mTempCanvas, mPressedGlowColor, mPressedOutlineColor);
231 }
232 // Invalidate so the pressed state is visible, or set a flag so we know that we
233 // have to call invalidate as soon as the state is "pressed"
234 if (isPressed()) {
235 mDidInvalidateForPressedState = true;
Michael Jurkae6235dd2011-10-04 15:02:05 -0700236 setCellLayoutPressedOrFocusedIcon();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800237 } else {
238 mDidInvalidateForPressedState = false;
239 }
Winson Chung88f33452012-02-23 15:23:44 -0800240
241 mLongPressHelper.postCheckForLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800242 break;
243 case MotionEvent.ACTION_CANCEL:
244 case MotionEvent.ACTION_UP:
245 // If we've touched down and up on an item, and it's still not "pressed", then
246 // destroy the pressed outline
247 if (!isPressed()) {
248 mPressedOrFocusedBackground = null;
249 }
Winson Chung88f33452012-02-23 15:23:44 -0800250
251 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800252 break;
253 }
254 return result;
255 }
256
Michael Jurkaddd62e92011-02-16 17:49:14 -0800257 void setStayPressed(boolean stayPressed) {
258 mStayPressed = stayPressed;
259 if (!stayPressed) {
260 mPressedOrFocusedBackground = null;
261 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800262 setCellLayoutPressedOrFocusedIcon();
263 }
264
265 void setCellLayoutPressedOrFocusedIcon() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700266 if (getParent() instanceof ShortcutAndWidgetContainer) {
267 ShortcutAndWidgetContainer parent = (ShortcutAndWidgetContainer) getParent();
Adam Cohen76fc0852011-06-17 13:26:23 -0700268 if (parent != null) {
269 CellLayout layout = (CellLayout) parent.getParent();
270 layout.setPressedOrFocusedIcon((mPressedOrFocusedBackground != null) ? this : null);
271 }
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700272 }
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800273 }
274
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700275 void clearPressedOrFocusedBackground() {
276 mPressedOrFocusedBackground = null;
277 setCellLayoutPressedOrFocusedIcon();
278 }
279
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800280 Bitmap getPressedOrFocusedBackground() {
281 return mPressedOrFocusedBackground;
282 }
283
284 int getPressedOrFocusedBackgroundPadding() {
Daniel Sandlere4f98912013-06-25 15:13:26 -0400285 return mOutlineHelper.mMaxOuterBlurRadius / 2;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800286 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800287
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 @Override
289 public void draw(Canvas canvas) {
Michael Jurkabdb5c532011-02-01 15:05:06 -0800290 final Drawable background = mBackground;
291 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700292 final int scrollX = getScrollX();
293 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800294
Michael Jurkabdb5c532011-02-01 15:05:06 -0800295 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700296 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800297 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800298 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800299
300 if ((scrollX | scrollY) == 0) {
301 background.draw(canvas);
302 } else {
303 canvas.translate(scrollX, scrollY);
304 background.draw(canvas);
305 canvas.translate(-scrollX, -scrollY);
306 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800307 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800308
309 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800310 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800311 getPaint().clearShadowLayer();
312 super.draw(canvas);
313 return;
314 }
315
Michael Jurkabdb5c532011-02-01 15:05:06 -0800316 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800317 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800318 super.draw(canvas);
319 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700320 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
321 getScrollX() + getWidth(),
322 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800323 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800324 super.draw(canvas);
325 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800326 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400327
328 @Override
329 protected void onAttachedToWindow() {
330 super.onAttachedToWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800331 if (mBackground != null) mBackground.setCallback(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400332 }
333
334 @Override
335 protected void onDetachedFromWindow() {
336 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800337 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400338 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700339
Winson Chung5f8afe62013-08-12 16:19:28 -0700340 public void setTextVisibility(boolean visible) {
341 Resources res = getResources();
342 if (visible) {
343 setTextColor(res.getColor(R.color.workspace_icon_text_color));
344 } else {
345 setTextColor(res.getColor(android.R.color.transparent));
346 }
347 mIsTextVisible = visible;
348 }
349
350 public boolean isTextVisible() {
351 return mIsTextVisible;
352 }
353
Winson Chungaffd7b42010-08-20 15:11:56 -0700354 @Override
355 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800356 if (mPrevAlpha != alpha) {
357 mPrevAlpha = alpha;
Winson Chunge22a8e92010-11-12 13:40:58 -0800358 super.onSetAlpha(alpha);
359 }
360 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700361 }
Winson Chung88f33452012-02-23 15:23:44 -0800362
363 @Override
364 public void cancelLongPress() {
365 super.cancelLongPress();
366
367 mLongPressHelper.cancelLongPress();
368 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800369}