Media Player controls in Notification

前端 未结 5 655
没有蜡笔的小新
没有蜡笔的小新 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
    慢半拍i (楼主)
    2021-02-01 19:57

    try something like this (i used integers for actions):

    intent.putExtra("action", ACTION_EXIT);
    pendingIntent = PendingIntent.getService(this, intent.getIntExtra("action", 0), intent, PendingIntent.FLAG_UPDATE_CURRENT);
    

    in public static PendingIntent getService (Context context, int requestCode, Intent intent, int flags) the requestCode must be unique.

提交回复
热议问题