Speech Recognition As A Service.(android)
I am developing android application. I my application I need speech recognition.But I need speech recognition as service. I already create simple speech recognition in which when I
Solution 1:
There is some code that does exactly what you need here:
See it running by downloading this app.
The code is a Service
that runs in the background, listening for the users speech. When the user speaks a certain word, it fires an Intent
. The Service
also puts up a handy Notification
while it is listening. There is some other code that starts and stops it here.
Post a Comment for "Speech Recognition As A Service.(android)"