I want to record audio with the microphone and save the audio file. Start recording works fine, but when I try to stop recording, the emulator gives a force close error. Stack trace:
01-09 18:16:59.075: E/AndroidRuntime(831): FATAL EXCEPTION: main
01-09 18:16:59.075: E/AndroidRuntime(831): java.lang.IllegalStateException
01-09 18:16:59.075: E/AndroidRuntime(831): at android.media.MediaRecorder.stop(Native Method)
01-09 18:16:59.075: E/AndroidRuntime(831): at com.example.voice.recorder.MainActivity.StopRecording(MainActivity.java:45)
01-09 18:16:59.075: E/AndroidRuntime(831): at com.example.voice.recorder.MainActivity$1.onClick(MainActivity.java:76)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.view.View.performClick(View.java:3511)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.view.View$PerformClick.run(View.java:14105)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.os.Handler.handleCallback(Handler.java:605)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.os.Handler.dispatchMessage(Handler.java:92)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.os.Looper.loop(Looper.java:137)
01-09 18:16:59.075: E/AndroidRuntime(831): at android.app.ActivityThread.main(ActivityThread.java:4424)
01-09 18:16:59.075: E/AndroidRuntime(831): at java.lang.reflect.Method.invokeNative(Native Method)
01-09 18:16:59.075: E/AndroidRuntime(831): at java.lang.reflect.Method.invoke(Method.java:511)
01-09 18:16:59.075: E/AndroidRuntime(831): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
01-09 18:16:59.075: E/AndroidRuntime(831): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
01-09 18:16:59.075: E/AndroidRuntime(831): at dalvik.system.NativeStart.main(Native Method)
It gives an error on MediaRecorder.stop(); This is how I try to stop recording:
public void StopRecording() throws IOException{
recorder.stop();
recorder.reset();
recorder.release();
recorder = null;
}
How I start recording:
public class MainActivity extends Activity {
MediaRecorder recorder;
public void StartRecording(){
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile("/sdcard/sample.3gp");
try {
recorder.prepare();
recorder.start();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
And how I call the method:
if (!tv.getText().equals("Recording...")){
tv.setText("Recording...");
tv.setTextColor(Color.RED);
record.setImageResource(R.drawable.microphone_icon_pressed);
StartRecording();
}else{
tv.setText("Click the button to start recording");
record.setImageResource(R.drawable.microphone_icon);
tv.setTextColor(Color.BLACK);
try {
StopRecording();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
I have this 2 permissions in my manifest:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
So start recording works fine, but stop recording doesn't. Does anybody know what's wrong with the code?
recorder
? (if it's a non-static member of aBroadcastReceiver
you could run into these sorts of problems, for example). – Welker