blob: f3aa3426d66f4840a35de63e0956e5fb771168e9 [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
Michael Jurka38b4f7c2010-12-14 16:46:39 -080019import com.android.launcher.R;
20
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.Context;
Winson Chung656d11c2010-11-29 17:15:47 -080022import android.content.res.Resources;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080023import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.graphics.Canvas;
Winson Chung656d11c2010-11-29 17:15:47 -080025import android.graphics.Color;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.graphics.Paint;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080027import android.graphics.Rect;
Michael Jurka137142e2011-01-05 20:57:04 -080028import android.graphics.Region;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080029import android.graphics.Region.Op;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080031import android.util.AttributeSet;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080032import android.view.MotionEvent;
Michael Jurka99b6a5b2011-01-07 15:37:17 -080033import android.view.View;
Romain Guyedcce092010-03-04 13:03:17 -080034
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 Jurka002bd922011-01-14 15:50:07 -080040public class BubbleTextView extends CachedTextView implements VisibilityChangedBroadcaster {
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;
45 static final int SHADOW_LARGE_COLOUR = 0xCC000000;
46 static final int SHADOW_SMALL_COLOUR = 0xBB000000;
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();
57 private final Paint mTempPaint = new Paint();
58 private boolean mDidInvalidateForPressedState;
59 private Bitmap mPressedOrFocusedBackground;
60 private int mFocusedOutlineColor;
61 private int mFocusedGlowColor;
62 private int mPressedOutlineColor;
63 private int mPressedGlowColor;
64
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065 private boolean mBackgroundSizeChanged;
66 private Drawable mBackground;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067
Michael Jurka99b6a5b2011-01-07 15:37:17 -080068 private VisibilityChangedListener mOnVisibilityChangedListener;
69
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() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086 mBackground = getBackground();
Winson Chung656d11c2010-11-29 17:15:47 -080087 setFocusable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088 setBackgroundDrawable(null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089
Winson Chung656d11c2010-11-29 17:15:47 -080090 final Resources res = getContext().getResources();
91 int bubbleColor = res.getColor(R.color.bubble_dark_background);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092 mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
Winson Chung656d11c2010-11-29 17:15:47 -080093 mPaint.setColor(bubbleColor);
94 mBubbleColorAlpha = Color.alpha(bubbleColor) / 255.0f;
Winson Chung59e1f9a2010-12-21 11:31:54 -080095 mFocusedOutlineColor = res.getColor(R.color.workspace_item_focused_outline_color);
96 mFocusedGlowColor = res.getColor(R.color.workspace_item_focused_glow_color);
97 mPressedOutlineColor = res.getColor(R.color.workspace_item_pressed_outline_color);
98 mPressedGlowColor = res.getColor(R.color.workspace_item_pressed_glow_color);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080099 }
100
Winson Chung88127032010-12-13 12:11:33 -0800101 protected int getCacheTopPadding() {
Winson Chung656d11c2010-11-29 17:15:47 -0800102 return (int) PADDING_V;
103 }
Winson Chung88127032010-12-13 12:11:33 -0800104 protected int getCacheBottomPadding() {
105 return (int) (PADDING_V + SHADOW_LARGE_RADIUS + SHADOW_Y_OFFSET);
106 }
107 protected int getCacheLeftPadding() {
108 return (int) (PADDING_H + SHADOW_LARGE_RADIUS);
109 }
110 protected int getCacheRightPadding() {
111 return (int) (PADDING_H + SHADOW_LARGE_RADIUS);
Winson Chung656d11c2010-11-29 17:15:47 -0800112 }
113
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800114 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
115 Bitmap b = info.getIcon(iconCache);
116
117 setCompoundDrawablesWithIntrinsicBounds(null,
118 new FastBitmapDrawable(b),
119 null, null);
120 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800121 setTag(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800122 }
123
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124 @Override
125 protected boolean setFrame(int left, int top, int right, int bottom) {
126 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
127 mBackgroundSizeChanged = true;
128 }
129 return super.setFrame(left, top, right, bottom);
130 }
131
132 @Override
133 protected boolean verifyDrawable(Drawable who) {
134 return who == mBackground || super.verifyDrawable(who);
135 }
136
137 @Override
138 protected void drawableStateChanged() {
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800139 if (isPressed()) {
140 // In this case, we have already created the pressed outline on ACTION_DOWN,
141 // so we just need to do an invalidate to trigger draw
142 if (!mDidInvalidateForPressedState) {
143 invalidate();
144 }
145 } else {
146 // Otherwise, either clear the pressed/focused background, or create a background
147 // for the focused state
148 final boolean backgroundEmptyBefore = mPressedOrFocusedBackground == null;
149 mPressedOrFocusedBackground = null;
150 if (isFocused()) {
151 mPressedOrFocusedBackground = createGlowingOutline(
152 mTempCanvas, mFocusedGlowColor, mFocusedOutlineColor);
153 invalidate();
154 }
155 final boolean backgroundEmptyNow = mPressedOrFocusedBackground == null;
156 if (!backgroundEmptyBefore && backgroundEmptyNow) {
157 invalidate();
158 }
159 }
160
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 Drawable d = mBackground;
162 if (d != null && d.isStateful()) {
163 d.setState(getDrawableState());
164 }
165 super.drawableStateChanged();
166 }
167
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800168 /**
169 * Draw the View v into the given Canvas.
170 *
171 * @param v the view to draw
172 * @param destCanvas the canvas to draw on
173 * @param padding the horizontal and vertical padding to use when drawing
174 */
175 private void drawWithPadding(Canvas destCanvas, int padding) {
176 final Rect clipRect = mTempRect;
177 getDrawingRect(clipRect);
178
179 // adjust the clip rect so that we don't include the text label
180 clipRect.bottom =
181 getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V + getLayout().getLineTop(0);
182
183 // Draw the View into the bitmap.
184 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
185 // they set scrollX and scrollY to large values to achieve centered text
186 destCanvas.save();
187 destCanvas.translate(-getScrollX() + padding / 2, -getScrollY() + padding / 2);
188 destCanvas.clipRect(clipRect, Op.REPLACE);
189 draw(destCanvas);
190 destCanvas.restore();
191 }
192
193 /**
194 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
195 * Responsibility for the bitmap is transferred to the caller.
196 */
197 private Bitmap createGlowingOutline(Canvas canvas, int outlineColor, int glowColor) {
198 final int padding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
199 final Bitmap b = Bitmap.createBitmap(
200 getWidth() + padding, getHeight() + padding, Bitmap.Config.ARGB_8888);
201
202 canvas.setBitmap(b);
203 drawWithPadding(canvas, padding);
204 mOutlineHelper.applyExtraThickExpensiveOutlineWithBlur(b, canvas, glowColor, outlineColor);
205
206 return b;
207 }
208
209 @Override
210 public boolean onTouchEvent(MotionEvent event) {
211 // Call the superclass onTouchEvent first, because sometimes it changes the state to
212 // isPressed() on an ACTION_UP
213 boolean result = super.onTouchEvent(event);
214
215 switch (event.getAction()) {
216 case MotionEvent.ACTION_DOWN:
217 // So that the pressed outline is visible immediately when isPressed() is true,
218 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
219 // to create it)
220 if (mPressedOrFocusedBackground == null) {
221 mPressedOrFocusedBackground = createGlowingOutline(
222 mTempCanvas, mPressedGlowColor, mPressedOutlineColor);
223 }
224 // Invalidate so the pressed state is visible, or set a flag so we know that we
225 // have to call invalidate as soon as the state is "pressed"
226 if (isPressed()) {
227 mDidInvalidateForPressedState = true;
228 invalidate();
229 } else {
230 mDidInvalidateForPressedState = false;
231 }
232 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 }
240 break;
241 }
242 return result;
243 }
244
Michael Jurka99b6a5b2011-01-07 15:37:17 -0800245 public void setVisibilityChangedListener(VisibilityChangedListener listener) {
246 mOnVisibilityChangedListener = listener;
247 }
248
249 @Override
250 protected void onVisibilityChanged(View changedView, int visibility) {
251 if (mOnVisibilityChangedListener != null) {
252 mOnVisibilityChangedListener.receiveVisibilityChangedMessage(this);
253 }
254 super.onVisibilityChanged(changedView, visibility);
255 }
256
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800257 @Override
258 public void draw(Canvas canvas) {
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800259 if (mPressedOrFocusedBackground != null && (isPressed() || isFocused())) {
Michael Jurka137142e2011-01-05 20:57:04 -0800260 // The blue glow can extend outside of our clip region, so we first temporarily expand
261 // the canvas's clip region
262 canvas.save(Canvas.CLIP_SAVE_FLAG);
263 int padding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS / 2;
264 canvas.clipRect(-padding + mScrollX, -padding + mScrollY,
265 getWidth() + padding + mScrollX, getHeight() + padding + mScrollY,
266 Region.Op.REPLACE);
267 // draw blue glow
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800268 canvas.drawBitmap(mPressedOrFocusedBackground,
Michael Jurka137142e2011-01-05 20:57:04 -0800269 mScrollX - padding, mScrollY - padding, mTempPaint);
270 canvas.restore();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800271 }
Winson Chung88127032010-12-13 12:11:33 -0800272 if (isBuildingCache()) {
273 // We enhance the shadow by drawing the shadow twice
274 this.setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
275 super.draw(canvas);
276 this.setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
277 super.draw(canvas);
278 } else {
279 final Drawable background = mBackground;
280 if (background != null) {
281 final int scrollX = mScrollX;
282 final int scrollY = mScrollY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283
Winson Chung88127032010-12-13 12:11:33 -0800284 if (mBackgroundSizeChanged) {
285 background.setBounds(0, 0, mRight - mLeft, mBottom - mTop);
286 mBackgroundSizeChanged = false;
287 }
288
289 if ((scrollX | scrollY) == 0) {
290 background.draw(canvas);
291 } else {
292 canvas.translate(scrollX, scrollY);
293 background.draw(canvas);
294 canvas.translate(-scrollX, -scrollY);
295 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 }
Winson Chung88127032010-12-13 12:11:33 -0800297 super.draw(canvas);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800298 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400300
301 @Override
302 protected void onAttachedToWindow() {
303 super.onAttachedToWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800304 if (mBackground != null) mBackground.setCallback(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305 }
306
307 @Override
308 protected void onDetachedFromWindow() {
309 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800310 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400311 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700312
313 @Override
314 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800315 if (mPrevAlpha != alpha) {
316 mPrevAlpha = alpha;
Winson Chung656d11c2010-11-29 17:15:47 -0800317 mPaint.setAlpha((int) (alpha * mBubbleColorAlpha));
Winson Chunge22a8e92010-11-12 13:40:58 -0800318 super.onSetAlpha(alpha);
319 }
320 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700321 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800322}