获取 Spotify URI android 工作室

Get Spotify URI android studio

我想通过歌曲名称和艺术家姓名等参数从 Spotify 获取歌曲 URI。我已经查看了 Android SDK documentation,但没有看到我要查找的内容。我可能是错的。目前,我播放曲目的方式是像这样对 URI 进行硬编码:

mPlayer.playUri(null, "spotify:track:5m578MgxuEC956dulprCe8", 0, 0);

我想按照这个思路做点什么,但不确定是否可行:

mPlayer.playUri(null, track.getUri, 0, 0);

关于如何实现我上面描述的内容有什么想法吗?提前致谢。

在 Android 你可以使用 Spotify Web API for Android to access the search feature that is a part of Spotify Web Api.

searchTracks() 可能是您需要的方法。