Media Player controls in Notification

前端 未结 5 653
没有蜡笔的小新
没有蜡笔的小新 2021-02-01 19:14

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

5条回答
  •  -上瘾入骨i
    2021-02-01 19:48

    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);
    

提交回复
热议问题