How to Pause and Resume Audio recording in android
android, android-mediaplayer, audio, resume
Solution
Media Recorder class does not support to pause and resume , see second link class overview try to use stop and restart
How can i pause voice recording in Android?
http://developer.android.com/reference/android/media/MediaRecorder.html
http://www.techotopia.com/index.php/Android_Audio_Recording_and_Playback_using_MediaPlayer_and_MediaRecorder
Problem
I am developing an audio recording application using MediaRecorder class. I have the following requirement: 1.When a pause button is pressed then pause recording. 2.When a resume button is pressed then resume recording where it paused. I try this link But I am unable to implement the functionality. Any help/suggestion would be greatly appreciated.