I'm developing my first android app, and I am wondering if there is a way that I can tell if the stock android music player is running.

I am thinking there has to be a type of isRunning() boolean for it or something..

thanks

link|improve this question

feedback

1 Answer

AudioManager.isMusicActive()?

link|improve this answer
Perfect, now I don't want to create an instance of AudioManager do I? If I want to check to see if any other apps are playing music, how would I go about that? – novicePrgrmr Aug 5 '11 at 21:51
Come on don't be lazy! On top of API there is clear statement "Use Context.getSystemService(Context.AUDIO_SERVICE) to get an instance of this class." – peter_budo Aug 6 '11 at 6:37
Sorry for sounding lazy, but I'm a little confused. getting an instance of that class won't be able to tell me whether or not that service is running in another app will it? – novicePrgrmr Aug 6 '11 at 16:05
feedback

Your Answer

 
or
required, but never shown

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