//设置快捷方式要跳转的activity
Intent intent = new Intent();
intent.setClass(this, SplashActivity.class);
//要加上下面两句,否则应用被卸载之后,快捷方式不会消失
// intent.setAction("android.intent.action.MAIN");
// intent.addCategory("android.intent.category.LAUNCHER");
Intent addShortcut = new Intent(
"com.android.launcher.action.INSTALL_SHORTCUT");
Parcelable icon = Intent.ShortcutIconResource.fromContext(this,
R.drawable.icon);//快捷方式图标
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,
getString(R.string.app_name));//设置名称
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);//点击快捷方式后执行的操作
addShortcut.putExtra("duplicate", false);//是否允许快捷方式重复
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
sendBroadcast(addShortcut);