Home | History | Annotate | Download | only in launcher2

Lines Matching refs:ICON

1291                     final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
1387 // icon in case it disappears somehow.
1927 // This builds the icon bitmaps.
2145 * If c is not null, then it will be used to fill in missing data like the title and icon.
2149 Bitmap icon = null;
2171 // the resource -- This may implicitly give us back the fallback icon,
2196 icon = mIconCache.getIcon(componentName, resolveInfo, labelCache);
2199 if (icon == null) {
2201 icon = getIconFromCursor(c, iconIndex, context);
2204 // the fallback icon
2205 if (icon == null) {
2206 icon = getFallbackIcon();
2209 info.setIcon(icon);
2262 Bitmap icon = null;
2282 icon = Utilities.createIconBitmap(
2289 if (icon == null) {
2290 icon = getIconFromCursor(c, iconIndex, context);
2292 // the fallback icon
2293 if (icon == null) {
2294 icon = getFallbackIcon();
2299 icon = getIconFromCursor(c, iconIndex, context);
2300 if (icon == null) {
2301 icon = getFallbackIcon();
2309 icon = getFallbackIcon();
2314 info.setIcon(icon);
2409 Bitmap icon = null;
2414 icon = Utilities.createIconBitmap(new FastBitmapDrawable((Bitmap)bitmap), context);
2425 icon = Utilities.createIconBitmap(
2428 Log.w(TAG, "Could not load shortcut icon: " + extra);
2435 if (icon == null) {
2437 icon = fallbackIcon;
2439 icon = getFallbackIcon();
2443 info.setIcon(icon);
2459 // If this icon doesn't have a custom icon, check to see
2463 // package manager can't find an icon (for example because
2485 Log.d(TAG, "going to save icon bitmap for info=" + info);
2487 // or when the app is updated with a new icon.