Adding a terminate playback button using Android L Notification.MediaStyle

前端 未结 3 2007
南旧
南旧 2021-02-07 06:41

I want to create a Media Playback notification using the new Android L MediaStyle template. Now, I succeeded doing so perfectly well for actions like previous, play, pause, next

3条回答
  •  春和景丽
    2021-02-07 07:22

    That's the cancel button you're looking for:

      .setShowCancelButton(true)
      .setCancelButtonIntent(stopPendingIntent)
    

    On your MediaStyle instance.

提交回复
热议问题