/** * 为程序创建桌面快捷方式 */ private void addShortcut(){ Intent shortcut = new Intent(“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 //注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 ComponentName comp = new ComponentName(this.getPackageName(), “.”+this.getLocalClassName()); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); //快捷方式的图标 ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); sendBroadcast(shortcut); }

/** * 删除程序的快捷方式 */ private void delShortcut(){ Intent shortcut = new Intent(“com.android.launcher.action.UNINSTALL_SHORTCUT”); //快捷方式的名称 shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name)); //指定当前的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, new Intent(Intent.ACTION_MAIN).setComponent(comp)); sendBroadcast(shortcut); }

更多相关文章

  1. Android之访问下载文件
  2. Android解析包名信息
  3. Android创建应用程序快捷方式(shortcut)
  4. Android(安卓)按两次back键退出 -- 效率最高版
  5. android 创建添加快捷方式
  6. Android打开应用市场
  7. Intent在android中的几种用法
  8. 转 Android地图和定位学习总结
  9. Android(安卓)4.0 创建AVD报错

随机推荐

  1. android ndk 安装
  2. android在线API地址
  3. Android之HorizontalScrollView(一)
  4. android绘图网格线
  5. Android 驱动(5)---MTK 平台分区表
  6. Android 6.0 使用HttpClient的问题
  7. android jsonrpc 使用实例
  8. AllowBackup/FullBackupContent Problems
  9. android switch 控件自定义样式不显示??
  10. android listview adater