如何在我的 Android 应用程序(如 facebook 和 twitter)中添加音乐库

发布于 2024-12-10 16:25:12 字数 453 浏览 0 评论 0原文

我想在我的应用程序中添加或播放音乐库中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-12-17 16:25:12

您想要查看 MediaStore 和 MediaStore.Audio具体的

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文