Recherche…


Raccourcis du lanceur dynamique

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));

Nous pouvons supprimer tous les raccourcis dynamiques facilement en appelant: -

 shortcutManager.removeAllDynamicShortcuts();

Nous pouvons mettre à jour les Dynamic Shorcuts existants en utilisant

shortcutManager.updateShortcuts(Arrays.asList(shortcut);

Notez que setDynamicShortcuts(List) est utilisé pour redéfinir la liste complète des raccourcis dynamiques, addDynamicShortcuts(List) est utilisé pour ajouter des raccourcis dynamiques à la liste existante des raccourcis dynamiques.



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow