使用AudioRecord录制音频时停止按钮

时间:2011-01-13 16:30:48

标签: java android audiorecord android-audiorecord

目前我从这个网站(link text)的代码工作得很好。在网站上的示例中,它开始录制10秒钟,然后立即反向播放音频。我已经修改了代码,当按下按钮时开始记录,但只能记录10秒,然后保存该文件。我希望能够通过按下按钮开始录制,然后在另一个按钮上停止录制。我知道它可能是线程对象的wait()方法的中断,但不知道如何实现它。我的代码如下:

public void onClickRecord(View v){
        text.setText("Recording");
        Thread thread = new Thread(new Runnable() {
            public void run() {
                record();
            }
        });

        thread.start();

        synchronized(this) {
        try {
            wait(10000); //This is the 10 second waiting period while recording
        } 
        catch (InterruptedException e) {
        }
        }

        isRecording = false;

        try {
            thread.join();
        } catch (InterruptedException e) {
        }

    }
    public void onClickStop(View v){
        //Here is what needs to be implemented to stop the recording.
    }

有相当多的代码,所以我只发布了我认为相关的位。如果需要更多,请问。

感谢。

1 个答案:

答案 0 :(得分:0)

试试AudioRecord课程! 我认为这应该会有所帮助。

另请参阅AudioCapture http://developer.android.com/guide/topics/media/index.html