I would like to play a certain spotify playlist, anyone knows if there is any Spotify intent filter available?

thanks!

link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Just an ordinary intent should work.

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
link|improve this answer
I have tried this but apparently even when opening a url from the browser you only get the possibility to subscribe to a playlist and if you are already subscribed to the playlist nothing happens. With other words, playlists are no longer automatically opened and played. Has this recently changed maybe in the latest version(s)? – Gabriel Lozano-Moran Dec 28 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.