App Shortcuts in Android

Karthikraj Duraisamy
5 min readNov 24, 2016

--

An effort reducing effort in Android OS for the users.

Android 7.1 release includes many interesting updates. App Shortcuts is one of them.

What is App Shortcuts: App Shortcuts is a list which will be shown on top of the launcher icon while it is long pressed. App Shortcuts allows the user to land a page directly in the app by long pressing and selecting through launcher icon. The only option we had to launch the MAIN activity by clicking on app icon has become more luxury to hold 5 more options to decide.In simple, it is an App launcher icon’s instant menubar.

It basically reduces the effort taken by the user to visit a particular page. Also, the user can long press to drag a shortcut to pin it the home screen. Which is called pinned shortcuts and user can add and remove. The app can disable the pinned shortcuts but cannot add or remove programmatically.

Below image will be obvious to understand how it works.

These shortcuts can be added statically through an XML file or dynamically by adding some piece of code inside the app.

Limitation: Maximum of 5 shortcuts can be accommodated per icon. Including both static and dynamic shortcuts.

I am going to share my experience on implementing App Shortcuts. Code for demo app is available on Github.

  • How to implement Manifest shortcuts which is also referred as Static Shortcuts
  • How to implement Dynamic shortcuts

Manifest shortcuts:

Basically, the app which will not contain any action items that might be changed based on user interaction can go for it. Static shortcuts are defined in the XML file. For these shortcuts, we cannot change the title, desc and images at run-time.

So, only way to update them is to have a new build.

We need to add the below XML file in ‘res/xml/shortcuts.xml’

Manifest shortcut without any backstack activities

In the above XML file, notable items are

  • android:shortcutId — An id to refer the shortcut.
  • android:shortcutShortLabel — Mandatory and 10 char recommended.
  • android:shortcutLongLabel — 25 char recommended.
  • android:shortcutDisabledMessage — Message to be shown while the shortcut is disabled.

We need an entry in Manifest file. Here below the changes related to App Shortcuts In Android manifest file.

Mainfest entry for shortcuts

The ‘meta-data’ mentioned in the Android manifest file needs to be placed into the Launcher activity tag. That’s it. Now we can see the App Shortcuts for the app icon. See the result below,

In case, we want to have some Activity to be listed in the back stack and when the user clicks on the back button we may need to take them to Dashboard or Main screen, then we can have a stack of ‘Activities’ in the ‘shortcuts xml’ like the below code.

Manifest shortcuts with and without backstack activities

In the above ‘xml’ code we have a list if ‘intents’ added for ‘shortcut’. The last intent will be considered as the Activity to launch when the shortcut is clicked. Above intents will be added to back stack, So that user will see the back stacked activities while they press the back button. See the result below,

Note: While a shortcut is removed in an updated version and the same is pinned in users screen, the system will disable them automatically.

Dynamic shortcuts:

Dynamically adding shortcuts in ‘java’ code can be achieved by using ‘ShortcutManager’. Here below the sample code to achieve it,

Dynamic shortcut without any backstack activities

That’s it. We have added dynamic shortcuts into the app. By running the app we can see the added shortcuts.

For back stack support, we can add more than one shortcut intent to the list and the last item will be considered as target Activity and remaining will be considered for Activity Back stack.

Dynamic shortcut with backstack activity

The result in below images,

Remember, addDynamicShortcuts(List) method will always add on top of the existing shortcuts for the app and setDynamicShortcuts(List) method will always redefine the entire list.

What if we want to update the existing shortcut?

udateShortcuts(List) method will do this trick.

What if we want to remove the shortcuts?

As the name suggests removeAllDynamicShortcuts(List) will remove the list of shortcuts passed as a parameter. In case the shortcut is been pinned in the Home Screen while we call removeAllDynamicShortcuts(List), then pinned shortcuts will be disabled.

To Disable and Enable the shortcuts?

disableShortcuts(List) will simply disable the mentioned shortcut. disableShortcuts(List, CharSequence) will disable and attach an error message to the shortcut which will be displayed as a warning message to the user while pressing it. enableShortcuts(List) method will enable mentioned shortcuts.

Extras:

  • When we add or update the shortcuts in the background, we have a limitation to do so. For limitation, the counts will be monitored by the system. So continuous update from the background can be denied once the limit reaches. We can always check the limit by using isRateLimitingActive(). This limit will get reset once the app comes to the foreground.
  • We can always get the list of pinned shortcuts by using getPinnedShortcuts().
  • We can always get the list of manifest and dynamic shortcuts using getManifestShortcuts() and getDynamicShortcuts() respectively.

Hopefully this article will help you to add shortcuts in your app.

I posted this article originally on my blog.

Code for demo app is available on Github.

If you like the article, follow me on Medium and Twitter. You can also find me on LinkedIn.

--

--

Karthikraj Duraisamy

Building Oyku (oykuapp.com). Family-Android-Startups-Serverless-Badminton-Cycling are my interests.