Reputation: 373
I wanted to create a list of all songs which are present in android phone so that user can select one song from the list. How to do this???
Upvotes: 0
Views: 1324
Reputation: 1006789
Query the MediaStore
for all music files. Use the resulting Cursor
in a ListView
using a SimpleCursorAdapter
.
Upvotes: 3