在Android中Spotify Intent?

biq*_*llo 7 android intentfilter spotify

我想播放一个spotify播放列表,任何人都知道是否有Spotify意图过滤器?

谢谢!

Ada*_*äck 4

只是一个普通的意图就应该起作用。

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

  • 我已经尝试过了,但显然即使从浏览器打开网址,您也只能订阅播放列表,如果您已经订阅了播放列表,则什么也不会发生。换句话说,播放列表不再自动打开和播放。这最近在最新版本中是否发生了变化? (2认同)