0

目前我有这个网站的代码(链接文本)工作得很好。在网站上的示例中,它开始录制 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.
    }

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

谢谢。

4

1 回答 1

0

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

还可以在这里查看 AudioCapture http://developer.android.com/guide/topics/media/index.html

于 2011-01-13T17:12:33.837 回答