Better Programming

Advice for programmers.

Follow publication

Member-only story

Implement Continuous Speech Recognition on Android

Stephen Vinouze
Better Programming
Published in
3 min readMay 19, 2020

Photo by Clay Banks on Unsplash

Voice recognition has gained a lot of traction over the past few years. When building an app where you feel speech recognition would boost your user experience, you can either:

Implementing SpeechRecognizer in your Android application is straightforward. I’ll provide a detailed implementation later in the article.

However, we want continuous voice recognition. Unfortunately, the API doesn’t provide a mechanism to trigger voice recognition using a keyword. All voice recognition systems are based on this pattern, whether it’s “Ok Google” for Google Assistant, “Hey Siri” for iOS, or “Alexa” for Amazon devices.

For that, the second option should fit our needs. Sadly, Google Assistant remains a closed API and doesn’t offer many possibilities. It provides App Action, but you won’t achieve continuous voice recognition with it.

I was excited when I first came across VoiceInteractionService. It seemed to do what I wanted with the AlwaysOnHotwordDetector. Unfortunately, it’s tightly bound to Google Assistant by letting you integrate a custom assistant.

So far, we can use the SpeechRecognizer but we still need to trigger speech recognition from user interaction.

Activate Speech Recognition on Hot Keyword

We want to break this process into several steps:

  1. Activate speech recognition.
  2. Listen for the hot keyword.
  3. On keyword detected, listen to the user’s voice.
  4. On words caught, yield result.
  5. Deactivate speech recognition.

We leverage SpeechRecozigner by separating hot keyword detection from actual speech recognition.

Basic speech recognition setup

If you’re targeting SDK 23 or above, you must request permission for recording audio inside your application.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Stephen Vinouze
Stephen Vinouze

Written by Stephen Vinouze

✍️ Content creator | 👀 200k Views | 🤖 Keen interest in Android and Jetpack Compose | 🤝 Support me: https://medium.com/@s.vinouze/membership

Responses (4)

Write a response