Last active
February 17, 2022 07:47
-
-
Save zeroarst/b2f9cedd697b711c2a118e96f8133060 to your computer and use it in GitHub Desktop.
Notification.MediaStyle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | |
mediaSession.setMetadata( | |
MediaMetadataCompat.Builder() | |
.putString(MediaMetadata.METADATA_KEY_TITLE, title) | |
.putString(MediaMetadata.METADATA_KEY_ARTIST, PlaybackAudioInfo.artist) | |
.build() | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment