blob: f50b88930ed677b82cc9f0648591fc7889068beb [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
19import android.content.ComponentName;
20import android.content.ContentValues;
Joe Onorato0589f0f2010-02-08 13:44:00 -080021import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.content.Intent;
Joe Onorato0589f0f2010-02-08 13:44:00 -080023import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.graphics.Bitmap;
25import android.graphics.drawable.Drawable;
Joe Onoratobe386092009-11-17 17:32:16 -080026import android.util.Log;
27
28import java.util.ArrayList;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029
30/**
Joe Onorato0589f0f2010-02-08 13:44:00 -080031 * Represents an app in AllAppsView.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032 */
33class ApplicationInfo extends ItemInfo {
34
35 /**
36 * The application name.
37 */
38 CharSequence title;
39
40 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -040041 * A bitmap of the application's text in the bubble.
42 */
43 Bitmap titleBitmap;
44
45 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046 * The intent used to start the application.
47 */
48 Intent intent;
49
50 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -040051 * A bitmap version of the application icon.
52 */
53 Bitmap iconBitmap;
54
Joe Onorato0589f0f2010-02-08 13:44:00 -080055 ComponentName componentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056
The Android Open Source Project31dd5032009-03-03 19:32:27 -080057
58 ApplicationInfo() {
Romain Guy73b979d2009-06-09 12:57:21 -070059 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_SHORTCUT;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060 }
Joe Onorato0589f0f2010-02-08 13:44:00 -080061
62 /**
63 * Must not hold the Context.
64 */
65 public ApplicationInfo(ResolveInfo info, IconCache iconCache) {
66 this.componentName = new ComponentName(
67 info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
69
70 this.container = ItemInfo.NO_ID;
71 this.setActivity(componentName,
72 Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
73
74 iconCache.getTitleAndIcon(this, info);
75 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076
77 public ApplicationInfo(ApplicationInfo info) {
78 super(info);
Joe Onorato0589f0f2010-02-08 13:44:00 -080079 componentName = info.componentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 title = info.title.toString();
81 intent = new Intent(info.intent);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082 }
83
84 /**
85 * Creates the application intent based on a component name and various launch flags.
Romain Guy73b979d2009-06-09 12:57:21 -070086 * Sets {@link #itemType} to {@link LauncherSettings.BaseLauncherColumns#ITEM_TYPE_APPLICATION}.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087 *
88 * @param className the class name of the component representing the intent
89 * @param launchFlags the launch flags
90 */
91 final void setActivity(ComponentName className, int launchFlags) {
92 intent = new Intent(Intent.ACTION_MAIN);
93 intent.addCategory(Intent.CATEGORY_LAUNCHER);
94 intent.setComponent(className);
95 intent.setFlags(launchFlags);
Romain Guy73b979d2009-06-09 12:57:21 -070096 itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_APPLICATION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097 }
98
99 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100 public String toString() {
101 return title.toString();
102 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400103
Joe Onoratobe386092009-11-17 17:32:16 -0800104 public static void dumpApplicationInfoList(String tag, String label,
105 ArrayList<ApplicationInfo> list) {
106 Log.d(tag, label + " size=" + list.size());
107 for (ApplicationInfo info: list) {
108 Log.d(tag, " title=\"" + info.title + "\" titleBitmap=" + info.titleBitmap
Joe Onorato0589f0f2010-02-08 13:44:00 -0800109 + " iconBitmap=" + info.iconBitmap);
Joe Onoratobe386092009-11-17 17:32:16 -0800110 }
111 }
Joe Onorato0589f0f2010-02-08 13:44:00 -0800112
113 public ShortcutInfo makeShortcut() {
114 return new ShortcutInfo(this);
115 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116}