In my Android app I want to play or resume the played music after I paused it. I got my app to pause the music by sending a broadcast, but I can't get it to play or resume the music.
Here is the code to pause:
Intent i = new Intent("com.android.music.musicservicecommand");
i.putExtra("command", "pause");
sendBroadcast(i);
Try to use
Update
Try with the following action :
This question is old. Here is what I have discovered after testing these.
I have tried and verified these commands to work just fine.
Some more info about available commands:
taken from: https://android.googlesource.com/platform/packages/apps/Music/+/master/src/com/android/music/MediaPlaybackService.java