爱黑武论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 5737|回复: 4

[安卓技术] Android编程:应用程序图标自动添加至桌面

[复制链接]
发表于 2011-9-1 10:19 | 显示全部楼层 |阅读模式

立即注册,加入爱黑武论坛的大家庭!爱黑武,爱上搞机生活!

您需要 登录 才可以下载或查看,没有账号?注册

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

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

添加图标:

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

  1. Intent intent = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT" );
  2. intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, appName);
  3. // 要删除的应用程序的ComponentName,即应用程序包名+activity的名字 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent()
  4. .setComponent(new ComponentName(info.activityInfo.packageName,
  5. info.activityInfo.name)).setAction("android.intent.action.MAIN"));
  6. sendBroadcast(intent);
复制代码
添加删除的权限:

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

本文来源:eoeAndroid
发表于 2011-9-1 11:18 | 显示全部楼层
看一下
~~~~~~
发表于 2011-9-13 06:40 | 显示全部楼层
好复杂……眼花缭乱
发表于 2012-4-18 13:56 | 显示全部楼层
一起交流!对这个话题感兴趣的朋友们
回复 支持 反对

使用道具 举报

发表于 2012-5-3 21:52 | 显示全部楼层
那MIUI的启动器,是不是就是用这个原理,并且卸载掉功能表?
回复 支持 反对

使用道具 举报

 Hello,黑武的好机友!回复想偷个懒?点这里: 
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|Archiver|手机版|爱黑武论坛 ( 京ICP备2023028323号 | 京公网安备11011202000270号 )

GMT+8, 2024-11-21 19:46 , Processed in 0.044831 second(s), 20 queries .

Powered by Discuz! X3.4

Copyright © 2001-2024, ihei5.com

快速回复 返回顶部 返回列表