So I am trying to create a basic music app on android which displays the songs of the device in a list view and when one taps a particular song the app should play it on a different activity.
So far I've been able to extract the songs from sd card, create the second activity for playing the song (which is provided by a play/pause button and a seekbar).
But how would I pass the song tapped by the user in the list view to the second activity in order to play it.