Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想播放某个 Spotify 播放列表,有人知道是否有可用的 Spotify 意图过滤器吗?
谢谢!
只是一个普通的意图应该工作。
String spotifyUri = "spotify:user:..."; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri)); startActivity(intent);