Display list of all songs in android music folder in a list
I wanted to create a list of all songs which are present in android phone so that user c开发者_运维技巧an select one song from the list. How to do this???
Query the MediaStore
for all music files. Use the resulting Cursor
in a ListView
using a SimpleCursorAdapter
.
精彩评论