Slide 65
Slide 65 text
Pinned Shortcuts
if (shortcutManager.isRequestPinShortcutSupported()) {
Intent pinIntent =
shortcutManager.createShortcutResultIntent(shortcutInfo);
PendingIntent onPinnedIntent =
PendingIntent.getBroadcast(context, 0, pinIntent, 0);
shortcutManager.
requestPinShortcut(shortcutInfo,
onPinnedIntent.getIntentSender());
}