【发布时间】:2011-07-12 06:16:07
【问题描述】:
我想播放某个 Spotify 播放列表,有人知道是否有可用的 Spotify 意图过滤器吗?
谢谢!
【问题讨论】:
标签: android intentfilter spotify
我想播放某个 Spotify 播放列表,有人知道是否有可用的 Spotify 意图过滤器吗?
谢谢!
【问题讨论】:
标签: android intentfilter spotify
一个普通的意图应该可以工作。
String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
【讨论】: