有没有办法开始在 Spotify 上播放音乐?
Posted
技术标签:
【中文标题】有没有办法开始在 Spotify 上播放音乐?【英文标题】:Is there a way to start playing music on Spotify with an intent? 【发布时间】:2019-05-26 22:44:28 【问题描述】:我正在开发一个 android 应用程序,它应该开始在 Spotify 上播放特定的播放列表。尝试使用意图时,我只能在 Spotify 应用程序上打开播放列表,而不是播放它。有没有办法开始有意识地播放音乐,还是让我使用 Spotify SDK?
【问题讨论】:
【参考方案1】:是的,使用以下意图:
Intent spotifyIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("spotify:playlist:37i9dQZF1DXaTIN6XNquoW:play"));
startActivity(spotifyIntent);
:play
部分是可选的,它使 Spotify 在加载时自动开始播放
播放列表 id 37i9dQZF1DXaTIN6XNquoW
是迈克尔杰克逊。根据需要将其替换为另一个。
【讨论】:
【参考方案2】:首先打开 Spotify SDK。如果可能,您可以做到,如果没有,则意味着不可能。因为只有应用开发者才能在 AndroidManifest 中注册 Intent。
【讨论】:
以上是关于有没有办法开始在 Spotify 上播放音乐?的主要内容,如果未能解决你的问题,请参考以下文章