I have the following problem: I use SpeechRecognizer to identify a few words. I use the
public void onResults
method to destroy the SpeechR
You need to make sure you issue audioRecord.stop(); and audioRecord.release(); in your onPause() or similar methods. If you don't, the next time you run the app, you won't get access to the device, and you'll get start() status -38
audioRecord.stop();
audioRecord.release();
onPause()
start() status -38