I have written complete Music Player to stream music from the web, but I don\'t know how to put media player controls in Notification and when the screen is Lock.
I am f
All of you PendingIntents have same requestCode. That is the primary reason why other notification actions are not working.
Change request codes.
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
PendingIntent ppreviousIntent = PendingIntent.getService(this, 1, previousIntent, 0);
PendingIntent pplayIntent = PendingIntent.getService(this, 2, playIntent, 0);
PendingIntent pnextIntent = PendingIntent.getService(this, 3, nextIntent, 0);
PendingIntent pcloseIntent = PendingIntent.getService(this, 4, closeIntent, 0);