1

我想在我的应用程序中添加或播放音乐库中的 mp3 文件...

我能够在列表视图中获取所有 mp3 文件,但我想要音乐库的功能,其中列出了专辑、播放列表、艺术家的歌曲。

这是我从 SD 卡中获取 mp3 文件的代码

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));
}
4

1 回答 1

0

你想看看 MediaStore 和MediaStore.Audio是具体的

于 2012-04-20T20:32:34.117 回答