page.title=Increase Usage with Android Intents page.metaDescription=Use Android Intents to make your app available to users as they perform tasks in other apps. page.tags="engagement, intents" @jd:body

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