I want to add or play mp3 files from music library in my application...

I am able to fetch all mp3 files in a listview but I want features of the music gallery which lists out the songs accroding to the albums,playlist,artist.

This is my code for fetching the mp3 files from SD Card

class Mp3Filter implements FilenameFilter {
public boolean accept(File dir, String name) {
    return (name.endsWith(".mp3"));
}

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    currentPosition = position;
    playSong(MEDIA_PATH + songs.get(position));
}
link|improve this question

60% accept rate
feedback

1 Answer

You want to check out the MediaStore and MediaStore.Audio to be specific

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.