在android中播放音频文件

发布于 2024-11-27 10:45:34 字数 112 浏览 1 评论 0原文

我需要使用 Android SDK 播放长音频文件。我知道 Android 附带的 MediaPlayer 框架,但我想知道是否可以调用内置的“音乐播放器”应用程序,因此我不必编写自己的播放器 GUI 和代码。

I need to play long audio files using the Android SDK. I am aware of the MediaPlayer framework shipped by Android, but I was wondering wether the built-in "Music Player" application could be invoked, so I don't have to write my own player GUI and code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

假装不在乎 2024-12-04 10:45:34

是的,可以。
设置如下意图:

act=android.intent.action.VIEW dat=file:///mnt/sdcard/song_name.mp3 typ=audio/mpeg3

操作:VIEW

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri
                .parse("file:///mnt/sdcard/song_name.mp3"),
                "audio/mpeg3");
startActivity(intent);

Yes, you can.
Set up an intent like this:

act=android.intent.action.VIEW dat=file:///mnt/sdcard/song_name.mp3 typ=audio/mpeg3

Action: VIEW

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri
                .parse("file:///mnt/sdcard/song_name.mp3"),
                "audio/mpeg3");
startActivity(intent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文