【发布时间】:2018-01-10 21:14:23
【问题描述】:
我正在使用 ExoPlayer (https://github.com/google/ExoPlayer) 和自定义通知。
我想从锁屏和耳机访问我的音乐播放器,就像在谷歌播放音乐和 wync 中一样。
请帮帮我。
【问题讨论】:
标签: android notifications exoplayer lockscreen
我正在使用 ExoPlayer (https://github.com/google/ExoPlayer) 和自定义通知。
我想从锁屏和耳机访问我的音乐播放器,就像在谷歌播放音乐和 wync 中一样。
请帮帮我。
【问题讨论】:
标签: android notifications exoplayer lockscreen
对于锁定屏幕上的播放控制,您需要执行MediaStyle notification。
如果您想将艺术品作为锁屏背景,您需要支持 MediaSession 并正确维护会话的元数据:
new MediaMetadata.Builder(track)
.putBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART, bitmap)
.putBitmap(MediaMetadata.METADATA_KEY_DISPLAY_ICON, bitmap)
.build();
【讨论】: