I am using the AudioRecordApp as shown in the tutorial and sample program.
On my motorola, firmware 4.4.2, it works fine.
On my wife's Samsung Galaxy 2 with version 2.3.3, the recording starts, but after closing my app is called again, but it does not reach this code:
Sub audioRecorder_RecordComplete (Success As Boolean)
Log(Success)
If Success Then
vv.LoadVideo(File.DirRootExternal, "temp.3gpp")
vv.Play
End If
End Sub
Please use [ code ] [ /code ] tags (without spaces) when posting code.
The process might have been killed when activity was in the background.
Create a service and call Service.StartForeground in Service_Start sub. Now start the service before you start the recording. Android will now keep your process running.