Spotify Intent in android?
I would like to play a certain spotify playlist, anyone knows if there is a开发者_Python百科ny Spotify intent filter available?
thanks!
Just an ordinary intent should work.
String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
精彩评论