Mike Lentini
Mike Lentini

Reputation: 1358

Grabbing Info From Another App

I'm looking for information on how/if you can grab information from another app in Android. For example, if I wanted to make an app that checked which song was being played in the Music app at the moment. Is this even possible? I Googled around and searched on here but didn't find much.

Upvotes: 1

Views: 124

Answers (2)

Cheryl Simon
Cheryl Simon

Reputation: 46844

You can communicate with other apps via intents. What communication is possible depends on what that particular actions that app made available.

Upvotes: 2

CommonsWare
CommonsWare

Reputation: 1006539

Is this even possible?

Only if the app exposes an API for you to use, one that is documented and supported by the application's developer.

Upvotes: 2

Related Questions