Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Last active July 6, 2020 16:57
Show Gist options
  • Select an option

  • Save catalinghita8/10392096d68a35dd513cb1d12551629f to your computer and use it in GitHub Desktop.

Select an option

Save catalinghita8/10392096d68a35dd513cb1d12551629f to your computer and use it in GitHub Desktop.
private var speechRecognizer: SpeechRecognizer? = null
...
private fun listenToSpeechInput() {
speechRecognizer = SpeechRecognizer.createSpeechRecognizer(context)
speechRecognizer?.setRecognitionListener(object: RecognitionListener {
...
override fun onResults(p0: Bundle?) {
speechRecognizer?.stopListening()
requestExtractQuery(p0, true)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment