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

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

谢谢!

【问题讨论】:

    标签: android intentfilter spotify


    【解决方案1】:

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

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

    【讨论】:

    • 我已经尝试过了,但显然即使从浏览器打开一个 url,您也只能订阅播放列表,如果您已经订阅了播放列表,则没有任何反应。换句话说,播放列表不再自动打开和播放。这最近是否在最新版本中发生了变化?
    猜你喜欢
    • 2015-04-15
    • 2012-09-23
    • 2017-08-25
    • 1970-01-01
    • 2017-06-06
    • 2013-01-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多