我正在制作一个音乐播放器而且我遇到了问题。我正在为我的播放器使用遥控器,它们在锁屏上可见。当歌曲有封面时,我将它发送到遥控器并显示在lockScreen上,但我需要在歌曲没有封面时显示默认的手机锁屏背景 - 是否可能? 我试过这个:
RemoteControlClient.MetadataEditor editor = remoteControlClient.editMetadata(false);
editor.putBitmap(RemoteControlClient.MetadataEditor.BITMAP_KEY_ARTWORK, null).apply();
和此:
RemoteControlClient.MetadataEditor editor = remoteControlClient.editMetadata(true);
和此:
editor.clear();
editor.apply()
但没有任何帮助,当我点击下一首歌时,普遍的封面仍然在锁屏上。