锁定老帖子 主题:Shortcut的添加和删除
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-03-06
最后修改:2011-03-06
1.默认的Shortcut操作
/** * 添加到Shortcut选项中(默认桌面上长按调出) * * 同时需要在manifest中为activity提供一个包含 * action="android.intent.action.CREATE_SHORTCUT"的intent-filter */ private void addShortcutToOptions(){ // 创建一个默认的Intent Intent shortcut = new Intent(); //快捷方式的名称 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name)); //不允许重复创建 shortcut.putExtra("duplicate", false); //指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer //注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 String appClass = this.getPackageName() + "." +this.getLocalClassName(); ComponentName comp = new ComponentName(this.getPackageName(), appClass); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, newIntent(Intent.ACTION_MAIN).setComponent(comp)); // 下面的方法与上面的效果是一样的,另一种构建形式而已 // Intent respondIntent = new Intent(this, this.getClass()); // shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, respondIntent); //快捷方式的图标 ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); // 发送到消息队列 setResult(RESULT_OK, shortcut); }
[删除]
/** * 为程序创建桌面快捷方式 * * 同时需要在manifest中设置以下权限: * <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> */ private void addShortcut(){ Intent shortcut = newIntent("com.android.launcher.action.INSTALL_SHORTCUT"); // 快捷方式的名称 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name)); // 不允许重复创建 shortcut.putExtra("duplicate", false); // 指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer // 这里必须为Intent设置一个action,可以任意(但安装和卸载时该参数必须一致) String action = "com.android.action.test"; Intent respondIntent = new Intent(this, this.getClass()); respondIntent.setAction(action); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, respondIntent); // 下面的方法与上面的效果是一样的,另一种构建形式而已 // 注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 // String appClass = this.getPackageName() + "." + this.getLocalClassName(); // ComponentName comp = new ComponentName(this.getPackageName(), appClass); // shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(action).setComponent(comp)); // 快捷方式的图标 ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); sendBroadcast(shortcut); }
[删除]
/** * 删除程序的快捷方式 * * 同时需要在manifest中设置以下权限: * <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> */ private void delShortcut() { Intent shortcut = newIntent("com.android.launcher.action.UNINSTALL_SHORTCUT"); // 快捷方式的名称 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name)); // 指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer // 这里必须为Intent设置一个action,可以任意(但安装和卸载时该参数必须一致) String action = "com.android.action.test"; Intent respondIntent = new Intent(this, this.getClass()); respondIntent.setAction(action); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, respondIntent); // 下面的方法与上面的效果是一样的,另一种构建形式而已 // 注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 // String appClass = this.getPackageName() + "." + this.getLocalClassName(); // ComponentName comp = new ComponentName(this.getPackageName(), appClass); // shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(action).setComponent(comp)); sendBroadcast(shortcut); }
>> 可见添加到Shortcut列表和直接添加到桌面以及删除的操作都是大同小异的,归纳如下:
-------------------------------------------------------------------------
------------------------------------------------------------------------- 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-03-11
感谢分享,之前还真不是不知道如果删除
|
|
返回顶楼 | |
发表时间:2011-03-18
我想问一下,如何在应用安装到手机里时,自动在桌面增加快捷方式?
需要监听哪儿事件?如何处理重复添加快捷方式会报toast |
|
返回顶楼 | |
发表时间:2011-03-18
torycatkin 写道 我想问一下,如何在应用安装到手机里时,自动在桌面增加快捷方式?
需要监听哪儿事件?如何处理重复添加快捷方式会报toast “如何安装后自动增加快捷方式”是个值得探讨的问题,具体还没研究过。我目前了解到的是,桌面默认的快捷方式是被定义在Launcher项目的res/xml/default_workspace.xml中的。 至于添加操作后会产生提示,是Launcher中触发的,估计只能改Launcher源码了。 有思路的都来探讨下~~ |
|
返回顶楼 | |
发表时间:2011-10-09
在桌面生成的图标不能用啊
|
|
返回顶楼 | |
浏览 8514 次