I am looking each and everywhere on Web for getting URI of audio file from RecognitionListener, Using listener I am getting text what i speak as an output. But I am not able to get URI of audio. I have not found any other link rather than this - HERE which is still unanswered. If anyone knows how to achieve this?
@Override
public void onResults(Bundle results) {
Log.i("Voice Recognition", "onResults");
ArrayList<String> matches = results.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
txtOutput.setText(matches.get(0));
}