blob: b27f7bb116a329caa3865441921e719b4ebbdd51 [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
Winson Chung97d85d22011-04-13 11:27:36 -070019import java.util.Random;
20
Winson Chungaafa03c2010-06-11 17:34:16 -070021import android.content.Context;
22import android.content.res.Resources;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080023import android.graphics.Bitmap;
Joe Onorato1291a8c2009-09-15 15:07:25 -040024import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.graphics.Canvas;
Joe Onorato56d82912010-03-07 14:32:10 -050026import android.graphics.ColorMatrix;
27import android.graphics.ColorMatrixColorFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.graphics.Paint;
Joe Onoratobf15cb42009-08-07 14:33:40 -070029import android.graphics.PaintFlagsDrawFilter;
Joe Onorato1291a8c2009-09-15 15:07:25 -040030import android.graphics.PorterDuff;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.graphics.Rect;
Mike Reedcdd11792009-10-29 17:27:55 -040032import android.graphics.TableMaskFilter;
Winson Chungaafa03c2010-06-11 17:34:16 -070033import android.graphics.drawable.BitmapDrawable;
34import android.graphics.drawable.Drawable;
35import android.graphics.drawable.PaintDrawable;
Dianne Hackborn32ce7f12009-07-22 21:56:50 -070036import android.util.DisplayMetrics;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037
Romain Guyedcce092010-03-04 13:03:17 -080038import com.android.launcher.R;
39
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040/**
41 * Various utilities shared amongst the Launcher's classes.
42 */
43final class Utilities {
Michael Jurka3a9fced2012-04-13 14:44:29 -070044 @SuppressWarnings("unused")
Joe Onorato1291a8c2009-09-15 15:07:25 -040045 private static final String TAG = "Launcher.Utilities";
46
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047 private static int sIconWidth = -1;
48 private static int sIconHeight = -1;
Joe Onorato6665c0f2009-09-02 15:27:24 -070049 private static int sIconTextureWidth = -1;
50 private static int sIconTextureHeight = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051
Joe Onorato1291a8c2009-09-15 15:07:25 -040052 private static final Paint sBlurPaint = new Paint();
Joe Onoratoeb8325a2009-11-08 13:20:30 -050053 private static final Paint sGlowColorPressedPaint = new Paint();
Joe Onoratoc61cff92009-11-08 11:54:39 -050054 private static final Paint sGlowColorFocusedPaint = new Paint();
Joe Onorato56d82912010-03-07 14:32:10 -050055 private static final Paint sDisabledPaint = new Paint();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056 private static final Rect sOldBounds = new Rect();
Romain Guy89911d22009-09-28 18:48:49 -070057 private static final Canvas sCanvas = new Canvas();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058
59 static {
60 sCanvas.setDrawFilter(new PaintFlagsDrawFilter(Paint.DITHER_FLAG,
61 Paint.FILTER_BITMAP_FLAG));
62 }
Joe Onorato6665c0f2009-09-02 15:27:24 -070063 static int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
64 static int sColorIndex = 0;
65
66 /**
Michael Jurka931dc972011-08-05 15:08:15 -070067 * Returns a bitmap suitable for the all apps view. Used to convert pre-ICS
68 * icon bitmaps that are stored in the database (which were 74x74 pixels at hdpi size)
69 * to the proper size (48dp)
70 */
71 static Bitmap createIconBitmap(Bitmap icon, Context context) {
72 int textureWidth = sIconTextureWidth;
73 int textureHeight = sIconTextureHeight;
74 int sourceWidth = icon.getWidth();
75 int sourceHeight = icon.getHeight();
76 if (sourceWidth > textureWidth && sourceHeight > textureHeight) {
77 // Icon is bigger than it should be; clip it (solves the GB->ICS migration case)
78 return Bitmap.createBitmap(icon,
79 (sourceWidth - textureWidth) / 2,
80 (sourceHeight - textureHeight) / 2,
81 textureWidth, textureHeight);
82 } else if (sourceWidth == textureWidth && sourceHeight == textureHeight) {
83 // Icon is the right size, no need to change it
84 return icon;
85 } else {
86 // Icon is too small, render to a larger bitmap
Michael Jurka3a9fced2012-04-13 14:44:29 -070087 final Resources resources = context.getResources();
88 return createIconBitmap(new BitmapDrawable(resources, icon), context);
Michael Jurka931dc972011-08-05 15:08:15 -070089 }
90 }
91
92 /**
93 * Returns a bitmap suitable for the all apps view.
Joe Onorato6665c0f2009-09-02 15:27:24 -070094 */
Joe Onorato0589f0f2010-02-08 13:44:00 -080095 static Bitmap createIconBitmap(Drawable icon, Context context) {
Joe Onorato6665c0f2009-09-02 15:27:24 -070096 synchronized (sCanvas) { // we share the statics :-(
97 if (sIconWidth == -1) {
98 initStatics(context);
99 }
100
101 int width = sIconWidth;
102 int height = sIconHeight;
103
Joe Onorato6665c0f2009-09-02 15:27:24 -0700104 if (icon instanceof PaintDrawable) {
105 PaintDrawable painter = (PaintDrawable) icon;
106 painter.setIntrinsicWidth(width);
107 painter.setIntrinsicHeight(height);
108 } else if (icon instanceof BitmapDrawable) {
109 // Ensure the bitmap has a density.
110 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon;
111 Bitmap bitmap = bitmapDrawable.getBitmap();
112 if (bitmap.getDensity() == Bitmap.DENSITY_NONE) {
113 bitmapDrawable.setTargetDensity(context.getResources().getDisplayMetrics());
114 }
115 }
116 int sourceWidth = icon.getIntrinsicWidth();
117 int sourceHeight = icon.getIntrinsicHeight();
Michael Jurka931dc972011-08-05 15:08:15 -0700118 if (sourceWidth > 0 && sourceHeight > 0) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700119 // There are intrinsic sizes.
Romain Guy89911d22009-09-28 18:48:49 -0700120 if (width < sourceWidth || height < sourceHeight) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700121 // It's too big, scale it down.
122 final float ratio = (float) sourceWidth / sourceHeight;
123 if (sourceWidth > sourceHeight) {
124 height = (int) (width / ratio);
125 } else if (sourceHeight > sourceWidth) {
126 width = (int) (height * ratio);
127 }
128 } else if (sourceWidth < width && sourceHeight < height) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700129 // Don't scale up the icon
Joe Onorato6665c0f2009-09-02 15:27:24 -0700130 width = sourceWidth;
Romain Guy89911d22009-09-28 18:48:49 -0700131 height = sourceHeight;
Joe Onorato6665c0f2009-09-02 15:27:24 -0700132 }
133 }
134
135 // no intrinsic size --> use default size
136 int textureWidth = sIconTextureWidth;
137 int textureHeight = sIconTextureHeight;
138
139 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
140 Bitmap.Config.ARGB_8888);
141 final Canvas canvas = sCanvas;
142 canvas.setBitmap(bitmap);
143
144 final int left = (textureWidth-width) / 2;
145 final int top = (textureHeight-height) / 2;
146
Michael Jurka3a9fced2012-04-13 14:44:29 -0700147 @SuppressWarnings("all") // suppress dead code warning
148 final boolean debug = false;
149 if (debug) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700150 // draw a big box for the icon for debugging
151 canvas.drawColor(sColors[sColorIndex]);
152 if (++sColorIndex >= sColors.length) sColorIndex = 0;
153 Paint debugPaint = new Paint();
154 debugPaint.setColor(0xffcccc00);
155 canvas.drawRect(left, top, left+width, top+height, debugPaint);
156 }
157
158 sOldBounds.set(icon.getBounds());
159 icon.setBounds(left, top, left+width, top+height);
160 icon.draw(canvas);
161 icon.setBounds(sOldBounds);
Adam Cohenaaf473c2011-08-03 12:02:47 -0700162 canvas.setBitmap(null);
Joe Onorato6665c0f2009-09-02 15:27:24 -0700163
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 {
Michael Jurka3a9fced2012-04-13 14:44:29 -0700212 final Resources resources = context.getResources();
213 return createIconBitmap(new BitmapDrawable(resources, bitmap), context);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400214 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400215 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216 }
Joe Onoratobf15cb42009-08-07 14:33:40 -0700217
Joe Onorato56d82912010-03-07 14:32:10 -0500218 static Bitmap drawDisabledBitmap(Bitmap bitmap, Context context) {
219 synchronized (sCanvas) { // we share the statics :-(
220 if (sIconWidth == -1) {
221 initStatics(context);
222 }
223 final Bitmap disabled = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(),
224 Bitmap.Config.ARGB_8888);
225 final Canvas canvas = sCanvas;
226 canvas.setBitmap(disabled);
227
228 canvas.drawBitmap(bitmap, 0.0f, 0.0f, sDisabledPaint);
229
Adam Cohenaaf473c2011-08-03 12:02:47 -0700230 canvas.setBitmap(null);
231
Joe Onorato56d82912010-03-07 14:32:10 -0500232 return disabled;
233 }
234 }
235
Joe Onorato6665c0f2009-09-02 15:27:24 -0700236 private static void initStatics(Context context) {
237 final Resources resources = context.getResources();
Joe Onorato1291a8c2009-09-15 15:07:25 -0400238 final DisplayMetrics metrics = resources.getDisplayMetrics();
239 final float density = metrics.density;
240
Michael Jurkac9a96192010-11-01 11:52:08 -0700241 sIconWidth = sIconHeight = (int) resources.getDimension(R.dimen.app_icon_size);
Winson Chung4b825dcd2011-06-19 12:41:22 -0700242 sIconTextureWidth = sIconTextureHeight = sIconWidth;
Joe Onorato1291a8c2009-09-15 15:07:25 -0400243
Joe Onoratoa4c0cb92009-11-02 10:42:02 -0500244 sBlurPaint.setMaskFilter(new BlurMaskFilter(5 * density, BlurMaskFilter.Blur.NORMAL));
Joe Onoratoeb8325a2009-11-08 13:20:30 -0500245 sGlowColorPressedPaint.setColor(0xffffc300);
246 sGlowColorPressedPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 30));
Joe Onoratoc61cff92009-11-08 11:54:39 -0500247 sGlowColorFocusedPaint.setColor(0xffff8e00);
248 sGlowColorFocusedPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 30));
Joe Onorato56d82912010-03-07 14:32:10 -0500249
250 ColorMatrix cm = new ColorMatrix();
251 cm.setSaturation(0.2f);
252 sDisabledPaint.setColorFilter(new ColorMatrixColorFilter(cm));
253 sDisabledPaint.setAlpha(0x88);
Joe Onorato6665c0f2009-09-02 15:27:24 -0700254 }
255
Joe Onoratobf15cb42009-08-07 14:33:40 -0700256 /** Only works for positive numbers. */
257 static int roundToPow2(int n) {
258 int orig = n;
259 n >>= 1;
260 int mask = 0x8000000;
261 while (mask != 0 && (n & mask) == 0) {
262 mask >>= 1;
263 }
264 while (mask != 0) {
265 n |= mask;
266 mask >>= 1;
267 }
268 n += 1;
269 if (n != orig) {
270 n <<= 1;
271 }
272 return n;
273 }
Winson Chung97d85d22011-04-13 11:27:36 -0700274
275 static int generateRandomId() {
276 return new Random(System.currentTimeMillis()).nextInt(1 << 24);
277 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278}