biquillo
biquillo

Reputation: 6539

Spotify Intent in android?

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

thanks!

Upvotes: 7

Views: 2927

Answers (1)

Adam Nybäck
Adam Nybäck

Reputation: 855

Just an ordinary intent should work.

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);

Upvotes: 4

Related Questions