通过意图在Spotify上按“播放”

时间:2017-03-30 22:43:02

标签: android android-intent spotify

我正试图通过另一个应用程序恢复在spotify上播放暂停的歌曲。

我目前的代码:

Log.v(TAG, "Resuming Spotify");
Intent playSpotify = new Intent("com.spotify.mobile.android.ui.widget.PLAY");
playSpotify.setPackage("com.spotify.music");
context.sendBroadcast(playSpotify);

这不起作用。然而,它会暂停正在播放的歌曲。

感谢任何建议/资源!

2 个答案:

答案 0 :(得分:0)

com.spotify.mobile.android.ui.widget.PLAY

不再工作了。使用

com.spotify.mobile.android.ui.widget.NEXT

答案 1 :(得分:0)

Intent playSpotify = new Intent("com.spotify.mobile.android.ui.widget.NEXT");
playSpotify.setPackage("com.spotify.music");
sendBroadcast(playSpotify);

playSpotify = new Intent("com.spotify.mobile.android.ui.widget.PREVIOUS");
playSpotify.setPackage("com.spotify.music");
sendBroadcast(playSpotify);

这可能是一种解决方法。

更新: 使用SpotifyAppRemote.getPlayerApi().resume();个文档here