Android 播放声音 - 强制关闭错误

发布于 2024-12-11 16:15:14 字数 352 浏览 0 评论 0原文

我使用下面的代码在触摸 imageview 时播放 wav 声音,

                MediaPlayer mp = MediaPlayer.create(this, R.raw.ok);
                mp.start();
                while (mp.isPlaying()) { 
                    // donothing 
                 };
                 mp.release();

这给了我强制关闭错误,我错过了什么吗?或者我需要在清单文件中提供权限吗?..请帮助。

谢谢

I am using below code to play wav sound on touch of imageview

                MediaPlayer mp = MediaPlayer.create(this, R.raw.ok);
                mp.start();
                while (mp.isPlaying()) { 
                    // donothing 
                 };
                 mp.release();

this gives me Force Close error, am i missing anything? or do i need to provide the permission in manifest file?..Please help.

Thanks

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

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

发布评论

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

评论(2

我偏爱纯白色 2024-12-18 16:15:14

创建媒体播放器后,您必须在开始之前调用prepare()。试试这个代码

MediaPlayer mp = MediaPlayer.create(this, R.raw.ok);
                mp.prepare();
                mp.start();

after created media player you have to call prepare() before start. Try this code

MediaPlayer mp = MediaPlayer.create(this, R.raw.ok);
                mp.prepare();
                mp.start();
两人的回忆 2024-12-18 16:15:14

尝试用这个看看。

    public void audioPlayer(String path, String fileName){
        //set up MediaPlayer    
        MediaPlayer mp = new MediaPlayer();

        try {
            mp.setDataSource(path+"/"+fileName);
        } catch (IllegalArgumentException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            mp.prepare();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        mp.start();

}

根据您的代码更改此方法。另外,如果有任何错误,您应该发布错误日志,以便其他人可以确定确切的问题。

Try with this and see.

    public void audioPlayer(String path, String fileName){
        //set up MediaPlayer    
        MediaPlayer mp = new MediaPlayer();

        try {
            mp.setDataSource(path+"/"+fileName);
        } catch (IllegalArgumentException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            mp.prepare();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        mp.start();

}

Change this method according to your code. Also if there is any error, you should post the error log so that others could identify the exact issue.

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