blob: c83e7dbfd52e638bb9a384913dfd517e72c98e53 [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
Mitsuru Oshima583ed3b2009-05-12 19:19:10 -070019import android.graphics.drawable.BitmapDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080020import android.graphics.drawable.Drawable;
21import android.graphics.drawable.PaintDrawable;
22import android.graphics.Bitmap;
Joe Onorato1291a8c2009-09-15 15:07:25 -040023import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.graphics.Canvas;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.graphics.Paint;
Joe Onoratobf15cb42009-08-07 14:33:40 -070026import android.graphics.PaintFlagsDrawFilter;
27import android.graphics.PixelFormat;
Joe Onorato1291a8c2009-09-15 15:07:25 -040028import android.graphics.PorterDuff;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.graphics.Rect;
Joe Onoratobf15cb42009-08-07 14:33:40 -070030import android.graphics.RectF;
Mike Reedcdd11792009-10-29 17:27:55 -040031import android.graphics.TableMaskFilter;
Joe Onoratobf15cb42009-08-07 14:33:40 -070032import android.graphics.Typeface;
33import android.text.Layout.Alignment;
34import android.text.StaticLayout;
35import android.text.TextPaint;
Dianne Hackborn32ce7f12009-07-22 21:56:50 -070036import android.util.DisplayMetrics;
Joe Onoratobf15cb42009-08-07 14:33:40 -070037import android.util.Log;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.res.Resources;
39import android.content.Context;
40
Romain Guyedcce092010-03-04 13:03:17 -080041import com.android.launcher.R;
42
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043/**
44 * Various utilities shared amongst the Launcher's classes.
45 */
46final class Utilities {
Joe Onorato1291a8c2009-09-15 15:07:25 -040047 private static final String TAG = "Launcher.Utilities";
48
Joe Onorato9392a752009-09-15 17:13:09 -040049 private static final boolean TEXT_BURN = false;
50
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051 private static int sIconWidth = -1;
52 private static int sIconHeight = -1;
Joe Onorato6665c0f2009-09-02 15:27:24 -070053 private static int sIconTextureWidth = -1;
54 private static int sIconTextureHeight = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080055
56 private static final Paint sPaint = new Paint();
Joe Onorato1291a8c2009-09-15 15:07:25 -040057 private static final Paint sBlurPaint = new Paint();
Joe Onoratoeb8325a2009-11-08 13:20:30 -050058 private static final Paint sGlowColorPressedPaint = new Paint();
Joe Onoratoc61cff92009-11-08 11:54:39 -050059 private static final Paint sGlowColorFocusedPaint = new Paint();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060 private static final Rect sBounds = new Rect();
61 private static final Rect sOldBounds = new Rect();
Romain Guy89911d22009-09-28 18:48:49 -070062 private static final Canvas sCanvas = new Canvas();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063
64 static {
65 sCanvas.setDrawFilter(new PaintFlagsDrawFilter(Paint.DITHER_FLAG,
66 Paint.FILTER_BITMAP_FLAG));
67 }
68
69 static Bitmap centerToFit(Bitmap bitmap, int width, int height, Context context) {
70 final int bitmapWidth = bitmap.getWidth();
71 final int bitmapHeight = bitmap.getHeight();
72
73 if (bitmapWidth < width || bitmapHeight < height) {
74 int color = context.getResources().getColor(R.color.window_background);
75
76 Bitmap centered = Bitmap.createBitmap(bitmapWidth < width ? width : bitmapWidth,
77 bitmapHeight < height ? height : bitmapHeight, Bitmap.Config.RGB_565);
Dianne Hackborn32ce7f12009-07-22 21:56:50 -070078 centered.setDensity(bitmap.getDensity());
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079 Canvas canvas = new Canvas(centered);
80 canvas.drawColor(color);
81 canvas.drawBitmap(bitmap, (width - bitmapWidth) / 2.0f, (height - bitmapHeight) / 2.0f,
82 null);
83
84 bitmap = centered;
85 }
86
87 return bitmap;
88 }
89
Joe Onorato6665c0f2009-09-02 15:27:24 -070090 static int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
91 static int sColorIndex = 0;
92
93 /**
94 * Returns a bitmap suitable for the all apps view. The bitmap will be a power
95 * of two sized ARGB_8888 bitmap that can be used as a gl texture.
96 */
Joe Onorato0589f0f2010-02-08 13:44:00 -080097 static Bitmap createIconBitmap(Drawable icon, Context context) {
Joe Onorato6665c0f2009-09-02 15:27:24 -070098 synchronized (sCanvas) { // we share the statics :-(
99 if (sIconWidth == -1) {
100 initStatics(context);
101 }
102
103 int width = sIconWidth;
104 int height = sIconHeight;
105
Joe Onorato6665c0f2009-09-02 15:27:24 -0700106 if (icon instanceof PaintDrawable) {
107 PaintDrawable painter = (PaintDrawable) icon;
108 painter.setIntrinsicWidth(width);
109 painter.setIntrinsicHeight(height);
110 } else if (icon instanceof BitmapDrawable) {
111 // Ensure the bitmap has a density.
112 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon;
113 Bitmap bitmap = bitmapDrawable.getBitmap();
114 if (bitmap.getDensity() == Bitmap.DENSITY_NONE) {
115 bitmapDrawable.setTargetDensity(context.getResources().getDisplayMetrics());
116 }
117 }
118 int sourceWidth = icon.getIntrinsicWidth();
119 int sourceHeight = icon.getIntrinsicHeight();
120
121 if (sourceWidth > 0 && sourceWidth > 0) {
122 // There are intrinsic sizes.
Romain Guy89911d22009-09-28 18:48:49 -0700123 if (width < sourceWidth || height < sourceHeight) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700124 // It's too big, scale it down.
125 final float ratio = (float) sourceWidth / sourceHeight;
126 if (sourceWidth > sourceHeight) {
127 height = (int) (width / ratio);
128 } else if (sourceHeight > sourceWidth) {
129 width = (int) (height * ratio);
130 }
131 } else if (sourceWidth < width && sourceHeight < height) {
132 // It's small, use the size they gave us.
133 width = sourceWidth;
Romain Guy89911d22009-09-28 18:48:49 -0700134 height = sourceHeight;
Joe Onorato6665c0f2009-09-02 15:27:24 -0700135 }
136 }
137
138 // no intrinsic size --> use default size
139 int textureWidth = sIconTextureWidth;
140 int textureHeight = sIconTextureHeight;
141
142 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
143 Bitmap.Config.ARGB_8888);
144 final Canvas canvas = sCanvas;
145 canvas.setBitmap(bitmap);
146
147 final int left = (textureWidth-width) / 2;
148 final int top = (textureHeight-height) / 2;
149
150 if (false) {
151 // draw a big box for the icon for debugging
152 canvas.drawColor(sColors[sColorIndex]);
153 if (++sColorIndex >= sColors.length) sColorIndex = 0;
154 Paint debugPaint = new Paint();
155 debugPaint.setColor(0xffcccc00);
156 canvas.drawRect(left, top, left+width, top+height, debugPaint);
157 }
158
159 sOldBounds.set(icon.getBounds());
160 icon.setBounds(left, top, left+width, top+height);
161 icon.draw(canvas);
162 icon.setBounds(sOldBounds);
163
164 return bitmap;
165 }
166 }
167
Joe Onoratoc61cff92009-11-08 11:54:39 -0500168 static void drawSelectedAllAppsBitmap(Canvas dest, int destWidth, int destHeight,
Joe Onoratoeb8325a2009-11-08 13:20:30 -0500169 boolean pressed, Bitmap src) {
Joe Onorato1291a8c2009-09-15 15:07:25 -0400170 synchronized (sCanvas) { // we share the statics :-(
171 if (sIconWidth == -1) {
172 // We can't have gotten to here without src being initialized, which
173 // comes from this file already. So just assert.
174 //initStatics(context);
175 throw new RuntimeException("Assertion failed: Utilities not initialized");
176 }
177
178 dest.drawColor(0, PorterDuff.Mode.CLEAR);
Jason Samsb4ecab22010-01-19 16:43:26 -0800179
Joe Onorato1291a8c2009-09-15 15:07:25 -0400180 int[] xy = new int[2];
Mike Reedcdd11792009-10-29 17:27:55 -0400181 Bitmap mask = src.extractAlpha(sBlurPaint, xy);
Joe Onorato1291a8c2009-09-15 15:07:25 -0400182
Mike Reedcdd11792009-10-29 17:27:55 -0400183 float px = (destWidth - src.getWidth()) / 2;
184 float py = (destHeight - src.getHeight()) / 2;
Joe Onoratoc61cff92009-11-08 11:54:39 -0500185 dest.drawBitmap(mask, px + xy[0], py + xy[1],
Joe Onoratoeb8325a2009-11-08 13:20:30 -0500186 pressed ? sGlowColorPressedPaint : sGlowColorFocusedPaint);
Joe Onorato1291a8c2009-09-15 15:07:25 -0400187
188 mask.recycle();
189 }
190 }
Joe Onorato6665c0f2009-09-02 15:27:24 -0700191
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 /**
193 * Returns a Bitmap representing the thumbnail of the specified Bitmap.
194 * The size of the thumbnail is defined by the dimension
195 * android.R.dimen.launcher_application_icon_size.
196 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197 * @param bitmap The bitmap to get a thumbnail of.
198 * @param context The application's context.
199 *
200 * @return A thumbnail for the specified bitmap or the bitmap itself if the
201 * thumbnail could not be created.
202 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800203 static Bitmap resampleIconBitmap(Bitmap bitmap, Context context) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400204 synchronized (sCanvas) { // we share the statics :-(
205 if (sIconWidth == -1) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700206 initStatics(context);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207 }
208
Joe Onorato0589f0f2010-02-08 13:44:00 -0800209 if (bitmap.getWidth() == sIconWidth && bitmap.getHeight() == sIconHeight) {
210 return bitmap;
211 } else {
212 return createIconBitmap(new BitmapDrawable(bitmap), context);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400213 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400214 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215 }
Joe Onoratobf15cb42009-08-07 14:33:40 -0700216
Joe Onorato6665c0f2009-09-02 15:27:24 -0700217 private static void initStatics(Context context) {
218 final Resources resources = context.getResources();
Joe Onorato1291a8c2009-09-15 15:07:25 -0400219 final DisplayMetrics metrics = resources.getDisplayMetrics();
220 final float density = metrics.density;
221
Joe Onorato6665c0f2009-09-02 15:27:24 -0700222 sIconWidth = sIconHeight = (int) resources.getDimension(android.R.dimen.app_icon_size);
Jason Samsb4ecab22010-01-19 16:43:26 -0800223 sIconTextureWidth = sIconTextureHeight = sIconWidth + 2;
Joe Onorato1291a8c2009-09-15 15:07:25 -0400224
Joe Onoratoa4c0cb92009-11-02 10:42:02 -0500225 sBlurPaint.setMaskFilter(new BlurMaskFilter(5 * density, BlurMaskFilter.Blur.NORMAL));
Joe Onoratoeb8325a2009-11-08 13:20:30 -0500226 sGlowColorPressedPaint.setColor(0xffffc300);
227 sGlowColorPressedPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 30));
Joe Onoratoc61cff92009-11-08 11:54:39 -0500228 sGlowColorFocusedPaint.setColor(0xffff8e00);
229 sGlowColorFocusedPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 30));
Joe Onorato6665c0f2009-09-02 15:27:24 -0700230 }
231
Joe Onoratobf15cb42009-08-07 14:33:40 -0700232 static class BubbleText {
233 private static final int MAX_LINES = 2;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700234
Romain Guy88f38d12010-01-26 14:50:34 -0800235 private final TextPaint mTextPaint;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700236
Romain Guy88f38d12010-01-26 14:50:34 -0800237 private final float mBubblePadding;
238 private final RectF mBubbleRect = new RectF();
Joe Onoratobf15cb42009-08-07 14:33:40 -0700239
Romain Guy88f38d12010-01-26 14:50:34 -0800240 private final float mTextWidth;
241 private final int mLeading;
242 private final int mFirstLineY;
243 private final int mLineHeight;
244
245 private final int mBitmapWidth;
246 private final int mBitmapHeight;
247 private final int mDensity;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700248
249 BubbleText(Context context) {
250 final Resources resources = context.getResources();
251
Romain Guy88f38d12010-01-26 14:50:34 -0800252 final DisplayMetrics metrics = resources.getDisplayMetrics();
253 final float scale = metrics.density;
254 mDensity = metrics.densityDpi;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700255
256 final float paddingLeft = 5.0f * scale;
257 final float paddingRight = 5.0f * scale;
Romain Guy442eda22010-02-04 15:59:37 -0800258 final float cellWidth = resources.getDimension(R.dimen.title_texture_width);
Joe Onoratobf15cb42009-08-07 14:33:40 -0700259 final float bubbleWidth = cellWidth - paddingLeft - paddingRight;
Joe Onorato43e7bcf2009-08-08 18:53:53 -0700260 mBubblePadding = 3.0f * scale;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700261
262 RectF bubbleRect = mBubbleRect;
263 bubbleRect.left = 0;
264 bubbleRect.top = 0;
Romain Guyc0c4fe32010-02-12 23:20:25 +0100265 bubbleRect.right = (int) cellWidth;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700266
Joe Onoratobf15cb42009-08-07 14:33:40 -0700267 mTextWidth = bubbleWidth - mBubblePadding - mBubblePadding;
268
Joe Onoratobf15cb42009-08-07 14:33:40 -0700269 TextPaint textPaint = mTextPaint = new TextPaint();
Joe Onoratoefabe002009-08-28 09:38:18 -0700270 textPaint.setTypeface(Typeface.DEFAULT);
271 textPaint.setTextSize(13*scale);
Joe Onoratobf15cb42009-08-07 14:33:40 -0700272 textPaint.setColor(0xffffffff);
Joe Onorato43e7bcf2009-08-08 18:53:53 -0700273 textPaint.setAntiAlias(true);
Joe Onorato9392a752009-09-15 17:13:09 -0400274 if (TEXT_BURN) {
275 textPaint.setShadowLayer(8, 0, 0, 0xff000000);
276 }
Joe Onoratobf15cb42009-08-07 14:33:40 -0700277
278 float ascent = -textPaint.ascent();
279 float descent = textPaint.descent();
Joe Onorato43e7bcf2009-08-08 18:53:53 -0700280 float leading = 0.0f;//(ascent+descent) * 0.1f;
Joe Onoratobf15cb42009-08-07 14:33:40 -0700281 mLeading = (int)(leading + 0.5f);
282 mFirstLineY = (int)(leading + ascent + 0.5f);
283 mLineHeight = (int)(leading + ascent + descent + 0.5f);
284
Romain Guy442eda22010-02-04 15:59:37 -0800285 mBitmapWidth = (int)(mBubbleRect.width() + 0.5f);
Joe Onorato43e7bcf2009-08-08 18:53:53 -0700286 mBitmapHeight = roundToPow2((int)((MAX_LINES * mLineHeight) + leading + 0.5f));
Joe Onoratobf15cb42009-08-07 14:33:40 -0700287
Joe Onoratofccc8df2009-10-01 14:30:16 -0700288 mBubbleRect.offsetTo((mBitmapWidth-mBubbleRect.width())/2, 0);
289
Joe Onorato080d9b62009-11-02 12:01:11 -0500290 if (false) {
291 Log.d(TAG, "mBitmapWidth=" + mBitmapWidth + " mBitmapHeight="
292 + mBitmapHeight + " w=" + ((int)(mBubbleRect.width() + 0.5f))
293 + " h=" + ((int)((MAX_LINES * mLineHeight) + leading + 0.5f)));
294 }
Joe Onoratobf15cb42009-08-07 14:33:40 -0700295 }
296
297 /** You own the bitmap after this and you must call recycle on it. */
298 Bitmap createTextBitmap(String text) {
Jason Sams6ec11bc2010-01-19 17:56:52 -0800299 Bitmap b = Bitmap.createBitmap(mBitmapWidth, mBitmapHeight, Bitmap.Config.ALPHA_8);
Romain Guy88f38d12010-01-26 14:50:34 -0800300 b.setDensity(mDensity);
Joe Onoratobf15cb42009-08-07 14:33:40 -0700301 Canvas c = new Canvas(b);
302
303 StaticLayout layout = new StaticLayout(text, mTextPaint, (int)mTextWidth,
304 Alignment.ALIGN_CENTER, 1, 0, true);
305 int lineCount = layout.getLineCount();
306 if (lineCount > MAX_LINES) {
307 lineCount = MAX_LINES;
308 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700309 //if (!TEXT_BURN && lineCount > 0) {
310 //RectF bubbleRect = mBubbleRect;
311 //bubbleRect.bottom = height(lineCount);
312 //c.drawRoundRect(bubbleRect, mCornerRadius, mCornerRadius, mRectPaint);
313 //}
Joe Onoratobf15cb42009-08-07 14:33:40 -0700314 for (int i=0; i<lineCount; i++) {
Joe Onoratofccc8df2009-10-01 14:30:16 -0700315 //int x = (int)((mBubbleRect.width() - layout.getLineMax(i)) / 2.0f);
316 //int y = mFirstLineY + (i * mLineHeight);
Romain Guy88f38d12010-01-26 14:50:34 -0800317 final String lineText = text.substring(layout.getLineStart(i), layout.getLineEnd(i));
Joe Onoratofccc8df2009-10-01 14:30:16 -0700318 int x = (int)(mBubbleRect.left
Romain Guy88f38d12010-01-26 14:50:34 -0800319 + ((mBubbleRect.width() - mTextPaint.measureText(lineText)) * 0.5f));
Joe Onoratobf15cb42009-08-07 14:33:40 -0700320 int y = mFirstLineY + (i * mLineHeight);
Romain Guy88f38d12010-01-26 14:50:34 -0800321 c.drawText(lineText, x, y, mTextPaint);
Joe Onoratobf15cb42009-08-07 14:33:40 -0700322 }
323
324 return b;
325 }
Joe Onorato43e7bcf2009-08-08 18:53:53 -0700326
327 private int height(int lineCount) {
328 return (int)((lineCount * mLineHeight) + mLeading + mLeading + 0.0f);
329 }
330
331 int getBubbleWidth() {
332 return (int)(mBubbleRect.width() + 0.5f);
333 }
334
335 int getMaxBubbleHeight() {
336 return height(MAX_LINES);
337 }
338
339 int getBitmapWidth() {
340 return mBitmapWidth;
341 }
342
343 int getBitmapHeight() {
344 return mBitmapHeight;
345 }
Joe Onoratobf15cb42009-08-07 14:33:40 -0700346 }
347
348 /** Only works for positive numbers. */
349 static int roundToPow2(int n) {
350 int orig = n;
351 n >>= 1;
352 int mask = 0x8000000;
353 while (mask != 0 && (n & mask) == 0) {
354 mask >>= 1;
355 }
356 while (mask != 0) {
357 n |= mask;
358 mask >>= 1;
359 }
360 n += 1;
361 if (n != orig) {
362 n <<= 1;
363 }
364 return n;
365 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800366}