Android MediaRecorder IllegalStateException

我制作的应用程序允许用户录制音频并将其保存在SD卡中的某个位置。 我正在使用MediaRecorder来录制音频。

我正在重新使用androiddevblog网站上的一些代码,因为它是由另一位用户在stackoverflow上推荐的,以检查这些教程。

我的问题是每当我点击按钮记录音频时,我收到一个错误,说“你的应用程序已被迫停止”。 我用调试器发现这是因为我在recorder.stop()上有一个illegalStateException

我知道没有什么会根据我的代码进行记录。 我想首先确保文件被创建并保存。

我之前发布了这个问题,并解决了我原来的问题,但之后遇到了这个问题。 所以它可能看起来是重复的。

public class MyRecorderActivity extends Activity{

private static final String AUDIO_RECORDER_FOLDER = "AudioRecorder";
 private static final String AUDIO_RECORDER_FILE_EXT_3GP = ".3gp"    
private Button audio;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.questionandanswer);
....
....

 audio = (Button) findViewById(R.id.audio_recordactivity);
    audio.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {

        startRecording();


        }
    });

 } 

  private String getFilename(){
        String filepath = Environment.getExternalStorageDirectory().getPath();
        File file = new File(filepath,AUDIO_RECORDER_FOLDER);

        if(!file.exists()){
                file.mkdirs();
        }

        return (file.getAbsolutePath()+ "/ " + System.currentTimeMillis() +  AUDIO_RECORDER_FILE_EXT_3GP);

  }

 private void startRecording(){
        MediaRecorder recorder = new MediaRecorder();

        recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
        recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
        recorder.setOutputFile(getFilename());

        try {
                recorder.prepare();
                recorder.start();
        } catch (IllegalStateException e) {
                e.printStackTrace();
        } catch (IOException e) {
                e.printStackTrace();
        }

        recorder.stop();
        recorder.reset();
        recorder.release();
   }

}

确保包含以下权限。

<uses-permission android:name="android.permission.RECORD_AUDIO" />

可能是另一个录音处于活动状态(可能是另一个下载的应用程序的默认录音机或录音机),请停止该录音并重新进行操作,希望它可以正常工作

链接地址: http://www.djcxy.com/p/31139.html

上一篇: Android MediaRecorder IllegalStateException

下一篇: error camera is not aviable