I am completing the video recording in the Android application, but I want to pause the recording during capture, can anyone help me.
the following code is used to start recording
MediaRecorder recorder; startRecording.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { recorder.start(); } });
source share