/**
* 为程序创建桌面快捷方式
*/
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);
}

更多相关文章

  1. 【Android自学笔记】为Android应用程序添加Rate功能
  2. 第一章:初入Android大门(程序加载应用)
  3. android 加法程序
  4. Android按返回键弹出对话框退出应用程序
  5. 【从头学android】第一个程序,点按钮显示Hello World
  6. 〖Android〗酷派手机固件.cpb文件的分解程序
  7. 如何制作Android手电筒程序
  8. Android应用程序获取ROOT权限的方法(android中如何通过代码检测

随机推荐

  1. Android音频编辑之音频转换PCM与WAV
  2. 自定义TextView跑马灯效果可控制启动/停
  3. Android(安卓)Studio官方文档之构建和运
  4. Android(安卓)DiskLruCache技术解析
  5. Android图片开源库:最全面、详细的Picasso
  6. Android进阶/面试重难点
  7. Android的第二次接触
  8. Android-BLE 1. 基本类的介绍
  9. Android面试题(28)-android的view加载和绘
  10. Android并发编程1-----多线程