How can i make menu like the picture below in android

Viewed 53

How to create a pinned shortcut like this so when the user long clicks on the app launcher logo create a shortcut that navigates to a certain activity like: 1:Record voice note 2:Type note 3:......

Preferably using java.

1 Answers

Those are App shortcuts. The official android developer documentation shows here how to create static and dynamic shortcuts.

Static shortcuts don't change during a version of your app.As stated in the documentation, a good example would be a shortcut to the "sent messages" in a messaging app.

Dynamic shortcuts can change. In a messanging app this could be for example a shortcut to "send message to last contact".

Related