i've read great tutorial of Informatix "How they do... #2" because for my app "YouMediaPlayer" i need to display image of album art (album covers) next to each song or the album list (as in this tutorial)..
i use this method to load files with mediabrowser:
now i'm studying the example, but i don't know how retrieve picture path and filename (coverdir e coverFile in your tutorial):
i need to create a specific folder for the albums images ?
and what method i've to use to connect the single image (of album) with song file and then retrieve them?
thanks
i use this method to load files with mediabrowser:
B4X:
Dim MB As MediaBrowser
Dim m As Map
m = MB.GetMediaAudioList(True, "artist COLLATE UNICODE, title COLLATE UNICODE" )
For i = 0 To (m.Size / 9) - 1
........
Artist = m.Get("Artist" & i)
Album = m.Get("Album" & i)
Location = m.Get("Location" & i)
....
next
now i'm studying the example, but i don't know how retrieve picture path and filename (coverdir e coverFile in your tutorial):
B4X:
lstAlbums.AddThumbnail(LoadBitmapSample(CoverDir, CoverFile, lstAlbums.SizeInGrid, lstAlbums.SizeInGrid), i)
i need to create a specific folder for the albums images ?
and what method i've to use to connect the single image (of album) with song file and then retrieve them?
thanks