Spotify Intent in android?
I would like to play a certain spotify playlist, anyone knows if there is any Spotify intent filter available?
thanks!
只是一个普通的意图应该工作。
String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
链接地址: http://www.djcxy.com/p/51406.html
上一篇: 通过CASE语句选择多个值?
下一篇: Spotify在Android中的意图?