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?的主要内容,如果未能解决你的问题,请参考以下文章
如何让 Spotify 和其他 Android 音乐应用根据意图进行搜索和播放?