Given an Android music playlist name, how can one find the songs in the playlist?

Here is a bit from my program: The gist is that you need the id for the playlist to grab the songs. Basically you can take my code and change the where statement to .NAME +” = ‘”+name+”‘”, private Cursor getPlaylists(String playlistId){ Cursor cursor = null; String[] projection1 = { MediaStore.Audio.Playlists._ID, MediaStore.Audio.Playlists.NAME }; cursor = … Read more