MediaPlayer 在 AsyncTask 中不播放 mp3

发布于 2024-11-16 13:09:50 字数 203 浏览 1 评论 0原文

我正在尝试播放网站上的 mp3 文件。下面的代码没有给我任何错误,但它不播放 mp3。

Android 版本是 2.2,我正在我的 HTC Magic 上进行测试。

编辑:当我在虚拟设备 v.2.2 上运行它时它可以工作。如果您知道为什么它在我的 HTC Magic 上不起作用,我非常想知道。

已修复:)

I'm trying to play an mp3 file from a website. The following code gives me no errors but it doesn't play the mp3.

Android version is 2.2 and I'm testing it on my HTC Magic.

Edit: it works when I run it on a virtual device v. 2.2. If you know why it doesn't work on my HTC Magic, I would very much like to know.

Fix'd :)

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

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

发布评论

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

评论(1

何以笙箫默 2024-11-23 13:09:50

我手机上的媒体音量为 0,这解释了为什么它只能在虚拟设备上使用。我通过将此行添加到 onCreate 方法来修复此问题:

    this.setVolumeControlStream(AudioManager.STREAM_MUSIC);

The media volume was 0 on my phone, which explains why it only works on the virtual device. I fixed this by adding this line to the onCreate method:

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