Android中的Spotify Intent?

Posted

技术标签:

【中文标题】Android中的Spotify Intent?【英文标题】:Spotify Intent in android? 【发布时间】:2011-07-12 06:16:07 【问题描述】:

我想播放某个 Spotify 播放列表,有人知道是否有可用的 Spotify 意图过滤器吗?

谢谢!

【问题讨论】:

【参考方案1】:

一个普通的意图应该可以工作。

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);

【讨论】:

我已经尝试过了,但显然即使从浏览器打开一个 url,您也只能订阅播放列表,如果您已经订阅了播放列表,则没有任何反应。换句话说,播放列表不再自动打开和播放。这最近是否在最新版本中发生了变化?

以上是关于Android中的Spotify Intent?的主要内容,如果未能解决你的问题,请参考以下文章

通过 Intent 在 Spotify 上按“播放”

如何让 Spotify 和其他 Android 音乐应用根据意图进行搜索和播放?

Android中的intent属性

行为变更 | 了解 Android 12 中的 intent-filter

Android12.4 利用Intent读取图库中的图片

android intent 可以传递enum 吗