Spotify在Android中的意图?
我想播放某个Spotify播放列表,任何人都知道是否有Spotify意图过滤器可用?
谢谢!
只是一个普通的意图应该工作。
String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
链接地址: http://www.djcxy.com/p/51405.html