I have a ListView of a music albums that are 开发者_如何学运维on my SD. I want to make another list that displays the songs that are on the album, when i click it. How to I query MediaStore only for that certain album?
Thanks!
Hi this may help you.....
Specify where clause with MediaStore.Audio.Media.ALBUM =
cur = managedQuery(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, proj, whereclause, null, null);
精彩评论