I would like to play a specific playlist, but does anyone know if there is any Spotify intent filter?
thanks!
Just an ordinary intention should work.
String spotifyUri = "spotify:user:..."; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri)); startActivity(intent);