如何在我的 Android 应用程序(如 facebook 和 twitter)中添加音乐库
我想在我的应用程序中添加或播放音乐库中的 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));
}
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));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要查看 MediaStore 和 MediaStore.Audio具体的
You want to check out the MediaStore and MediaStore.Audio to be specific