In my Android app I want to play or resume the played music after I pause it. I got my app to pause the music by sending a broadcast, but I can\'t get it to play or resume the m
Try to use
Intent i = new Intent("com.android.music.musicservicecommand");
i.putExtra("command", "togglepause");
sendBroadcast(i);
Update
Try with the following action :
Intent i = new Intent("com.android.music.musicservicecommand.togglepause");
i.putExtra("command", "togglepause");
sendBroadcast(i);