7

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

谢谢!

4

1 回答 1

4

只是一个普通的意图应该工作。

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
于 2011-03-23T14:30:12.790 回答