Start speech recognition thru voice with phrase like “Ok Google”?

前端 未结 2 1935
执笔经年
执笔经年 2021-02-07 10:53

I\'m building an app that uses Voice Commands to perform certain functions. I got some codes working from here

private static final int SPEECH_REQUEST_CODE = 0;
         


        
2条回答
  •  再見小時候
    2021-02-07 11:44

    You will need to write a service for continuous speech recognition. And based on the inputs you get as speech detect your trigger phrase and take action.

    This may be memory intensive and you will need to optimize by starting and stopping services on appropriate times and screens.

    The accepted answer to this question provides a means to achieve a similar thing.

提交回复
热议问题