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.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
That helped my search a bit. I found this, which may be what I was looking for: alexc.me/android-music-app-service-currently-playing-song/231 – Mike Lentini Feb 10 '11 at 22:05
Keep in mind that you should never use undocumented interfaces. These are likely to change over time, and will cause you nothing but problems. You app will break randomly, or only on certain phones, etc. – Mayra Feb 10 '11 at 22:18
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.