Most visited

Recently visited

Increase Usage with Android Intents

Let the user choose your app to handle specific tasks from another app, such as sharing a picture, sending a message, or playing music. You can do this though Android's open Intents system. By adding Intent filters for the tasks your app can handle, you make it easy for the user to access your app’s features from other apps and from voice commands in Google Now.

By declaring Intent Filters in your app, it informs the Android OS about the actions it can perform for other apps. And in addition to making it easy for your users to make full use of your app’s features, it can help them discover features they didn’t know it supported.

Get started with Interacting with Other Apps training.

Tips

  • Identify and package any features your app can offer to other apps.
  • Use the "view" intent to give users the option to open any links to your website within your app instead.
  • Familiarize yourself with actions commonly accomplished with intents, such as sharing, so that you can focus on your app's core functionality and outsource common actions.

Hooray!