欢迎来到天天文库
浏览记录
ID:57686354
大小:33.00 KB
页数:2页
时间:2020-09-01
《Android创建和删除桌面快捷方式.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Android创建和删除桌面快捷方式文章分类:移动开发 1, 创建 Java代码 1./** 2. * 为程序创建桌面快捷方式 3. */ 4.private void addShortcut(){ 5. Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); 6. 7. //快捷方式的名称 8. shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_n
2、ame)); 9. shortcut.putExtra("duplicate", false); //不允许重复创建 10. 11. //指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer 12. //注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 13. ComponentName comp = new ComponentName(this.getPackageName(), "."+this.getLocalClassNa
3、me()); 14. shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); 15. 16. //快捷方式的图标 17. ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon); 18. shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_R
4、ESOURCE, iconRes); 19. 20. sendBroadcast(shortcut); 21.} 2,删除Java代码 1./** 2. * 删除程序的快捷方式 3. */ 4.private void delShortcut(){ 1. Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT"); 2. 3. //快捷方式的名称 4. shortcut.putExtra(Intent.EXT
5、RA_SHORTCUT_NAME, getString(R.string.app_name)); 5. 6. //指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer 7. //注意: ComponentName的第二个参数必须是完整的类名(包名+类名),否则无法删除快捷方式 8. String appClass = this.getPackageName() + "." +this.getLocalClassName(); 9. ComponentName comp = n
6、ew ComponentName(this.getPackageName(), appClass); 10. shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); 11. 12. sendBroadcast(shortcut); 13. 14.} 3,声明权限在AndroidManifest.xml文件中声明创建和删除快捷方式时声明权限 Java代码 1.7、sion android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> 2.
7、sion android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> 2.
此文档下载收益归作者所有