Reputation: 1358
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
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
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