爱黑武 发表于 2011-9-1 10:19

Android编程:应用程序图标自动添加至桌面

本帖最后由 ihei5.com 于 2011-9-1 10:36 编辑

每个可以交互的应用,在项目清单文件中都有Launcher类,除了提示系统这个Activity是入口函数外,还会在应用列表中添加一个应用的快捷图标。本文讲述Launcher通过自己注册的InstallShortCutReceiver和UnInstallShortCutReceiver实现了快捷方式图标的生成与移除过程,分析外部apk实用Intent请求生成快捷方式和移除快捷方式图标的问题。

添加图标:
Intent intent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
// 是否可以有多个快捷方式的副本,参数如果是true就可以生成多个快捷方式,如果是false就不会重复添加 intent.putExtra("duplicate", false);
Intent intent2 = new Intent(Intent.ACTION_MAIN);
intent2.addCategory(Intent.CATEGORY_LAUNCHER);
// 删除的应用程序的ComponentName,即应用程序包名+activity的名字 intent2.setComponent(new ComponentName(this.getPackageName(), this.getPackageName() + ".Main"));
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent2);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this,
R.drawable.icon));
sendBroadcast(intent);
需要添加的权限:
<uses-permission android:name=“com.android.launcher.permission.INSTALL_SHORTCUT” />
Intent intent = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT" );
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, appName);
// 要删除的应用程序的ComponentName,即应用程序包名+activity的名字 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent()
.setComponent(new ComponentName(info.activityInfo.packageName,
info.activityInfo.name)).setAction("android.intent.action.MAIN"));
sendBroadcast(intent);
添加删除的权限:

<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"/>

本文来源:eoeAndroid

蓝星 发表于 2011-9-1 11:18

看一下
~~~~~~

lhk0207 发表于 2011-9-13 06:40

好复杂……眼花缭乱

蓝蓝天上tux 发表于 2012-4-18 13:56

一起交流!对这个话题感兴趣的朋友们

氵金枝玉☆烨 发表于 2012-5-3 21:52

那MIUI的启动器,是不是就是用这个原理,并且卸载掉功能表?
页: [1]
查看完整版本: Android编程:应用程序图标自动添加至桌面