2009-03-03 19:32:27 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-07-30 13:37:37 -07:00
|
|
|
package com.android.launcher2;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-06-11 17:34:16 -07:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.content.ComponentName;
|
|
|
|
|
import android.content.Intent;
|
2010-02-08 13:44:00 -08:00
|
|
|
import android.content.pm.ResolveInfo;
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.graphics.Bitmap;
|
2009-11-17 17:32:16 -08:00
|
|
|
import android.util.Log;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
/**
|
2010-02-08 13:44:00 -08:00
|
|
|
* Represents an app in AllAppsView.
|
2009-03-03 19:32:27 -08:00
|
|
|
*/
|
|
|
|
|
class ApplicationInfo extends ItemInfo {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The application name.
|
|
|
|
|
*/
|
|
|
|
|
CharSequence title;
|
|
|
|
|
|
2009-08-17 11:03:03 -04:00
|
|
|
/**
|
|
|
|
|
* A bitmap of the application's text in the bubble.
|
|
|
|
|
*/
|
|
|
|
|
Bitmap titleBitmap;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
/**
|
|
|
|
|
* The intent used to start the application.
|
|
|
|
|
*/
|
|
|
|
|
Intent intent;
|
|
|
|
|
|
2009-08-17 11:03:03 -04:00
|
|
|
/**
|
|
|
|
|
* A bitmap version of the application icon.
|
|
|
|
|
*/
|
|
|
|
|
Bitmap iconBitmap;
|
|
|
|
|
|
2010-02-08 13:44:00 -08:00
|
|
|
ComponentName componentName;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-02-08 13:44:00 -08:00
|
|
|
|
|
|
|
|
ApplicationInfo() {
|
|
|
|
|
itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_SHORTCUT;
|
|
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
|
|
|
|
|
/**
|
2010-02-08 13:44:00 -08:00
|
|
|
* Must not hold the Context.
|
2009-03-03 19:32:27 -08:00
|
|
|
*/
|
2010-02-08 13:44:00 -08:00
|
|
|
public ApplicationInfo(ResolveInfo info, IconCache iconCache) {
|
|
|
|
|
this.componentName = new ComponentName(
|
|
|
|
|
info.activityInfo.applicationInfo.packageName,
|
|
|
|
|
info.activityInfo.name);
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-02-08 13:44:00 -08:00
|
|
|
this.container = ItemInfo.NO_ID;
|
|
|
|
|
this.setActivity(componentName,
|
|
|
|
|
Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
|
|
|
|
|
|
|
|
|
|
iconCache.getTitleAndIcon(this, info);
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ApplicationInfo(ApplicationInfo info) {
|
|
|
|
|
super(info);
|
2010-02-08 13:44:00 -08:00
|
|
|
componentName = info.componentName;
|
2009-03-03 19:32:27 -08:00
|
|
|
title = info.title.toString();
|
|
|
|
|
intent = new Intent(info.intent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates the application intent based on a component name and various launch flags.
|
2009-06-09 12:57:21 -07:00
|
|
|
* Sets {@link #itemType} to {@link LauncherSettings.BaseLauncherColumns#ITEM_TYPE_APPLICATION}.
|
2009-03-03 19:32:27 -08:00
|
|
|
*
|
|
|
|
|
* @param className the class name of the component representing the intent
|
|
|
|
|
* @param launchFlags the launch flags
|
|
|
|
|
*/
|
|
|
|
|
final void setActivity(ComponentName className, int launchFlags) {
|
|
|
|
|
intent = new Intent(Intent.ACTION_MAIN);
|
|
|
|
|
intent.addCategory(Intent.CATEGORY_LAUNCHER);
|
|
|
|
|
intent.setComponent(className);
|
|
|
|
|
intent.setFlags(launchFlags);
|
2009-06-09 12:57:21 -07:00
|
|
|
itemType = LauncherSettings.BaseLauncherColumns.ITEM_TYPE_APPLICATION;
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
2010-03-25 09:47:45 -07:00
|
|
|
return "ApplicationInfo(title=" + title.toString() + ")";
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
2009-08-17 11:03:03 -04:00
|
|
|
|
2009-11-17 17:32:16 -08:00
|
|
|
public static void dumpApplicationInfoList(String tag, String label,
|
|
|
|
|
ArrayList<ApplicationInfo> list) {
|
|
|
|
|
Log.d(tag, label + " size=" + list.size());
|
|
|
|
|
for (ApplicationInfo info: list) {
|
|
|
|
|
Log.d(tag, " title=\"" + info.title + "\" titleBitmap=" + info.titleBitmap
|
2010-02-08 13:44:00 -08:00
|
|
|
+ " iconBitmap=" + info.iconBitmap);
|
2009-11-17 17:32:16 -08:00
|
|
|
}
|
|
|
|
|
}
|
2010-02-08 13:44:00 -08:00
|
|
|
|
|
|
|
|
public ShortcutInfo makeShortcut() {
|
|
|
|
|
return new ShortcutInfo(this);
|
|
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|