动态启动器快捷方式

ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "id1")
    .setShortLabel("Web site") // Shortcut Icon tab
    .setLongLabel("Open the web site") // Displayed When Long Pressing On App Icon
    .setIcon(Icon.createWithResource(context, R.drawable.icon_website))
    .setIntent(new Intent(Intent.ACTION_VIEW,
                   Uri.parse("https://www.mysite.example.com/")))
    .build();

shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));

我们可以通过以下方式轻松删除所有动态快捷方式: -

 shortcutManager.removeAllDynamicShortcuts();

我们可以使用更新现有的 Dynamic Shorcuts

shortcutManager.updateShortcuts(Arrays.asList(shortcut);

请注意,setDynamicShortcuts(List) 用于重新定义整个动态快捷方式列表,addDynamicShortcuts(List) 用于向现有动态快捷方式列表添加动态快捷方式