Did you find this article helpful?
How to lunch Spotify app by using Intent in Android ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I knew this might be repeated but my question is very simple.
How do i lunch Spotify App using Intent in Android ?
Right now i am using below type of code (got from Stackoverflow) and it's running and opening particular Album in Spotify App. But i want to open Spotify App and just lunch it's Home screen.
val intent = Intent(Intent.ACTION_VIEW)
intent.data = Uri.parse("spotify:album:0sNOF9WDwhWunNAHPD3Baj")
intent.putExtra(
Intent.EXTRA_REFERRER,
Uri.parse("android-app://" + this.packageName)
)
this.startActivity(intent)
I don't have any playlist, album or track in my account. But i want to open Spotify App and just lunch it's Home screen.
How can i do this ?
Labels:
- Labels:
-
Android
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page