I want to wright an Android application. Where I am playing different mp3 files With "MediaPlayer" class. Now User Is playing his/her own music with a default music application. I want to pause the music of the default music application from my application. And start playing my music, when my music playing will get over, my app will resume default music.

In short I want to Pause and Resume the music of default music player from my application. Is tat possible in Android?

Thanks in Advance.

Regards.

link|improve this question
feedback

1 Answer

The following code will pause a default MediaPlayer by sending a broadcast:

AudioManager mAudioManager = (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);    

if (mAudioManager.isMusicActive()) {

    Intent i = new Intent("com.android.music.musicservicecommand");

    i.putExtra("command", "pause");
    YourApplicationClass.this.sendBroadcast(i);
} 
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.