在其他应用程序快捷方式图标上打开相同

时间:2017-09-14 06:24:39

标签: android

我在安装其他应用后在家中创建了一个快捷方式图标。我可以在家中添加快捷方式图标,但点击快捷方式图标后,只有我的应用程序处于打开状态。

我的代码:

Intent shortcutIntent = new Intent(context,
                        list.get(i).activityInfo.name.getClass());
shortcutIntent.setAction(Intent.ACTION_MAIN);
Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
                     manager.getApplicationLabel(list.get(i).activityInfo.applicationInfo));
addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
Parcelable icon = Intent.ShortcutIconResource.fromContext(context, list.get(i).activityInfo.icon);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
context.sendBroadcast(addIntent);

列表类型是ResolveInfo。

0 个答案:

没有答案