//创建桌面快捷方式
Intent shortCutIntent =new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
shortCutIntent.putExtra("duplicate",false);
shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,"数字展厅V");
shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(getApplicationContext(),R.mipmap.ic_launcher));
Intent intent =new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
intent.setClass(getApplicationContext(), MainActivity.class);
shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
// 发送广播
getApplicationContext().sendBroadcast(shortCutIntent);