是否可以为Android 4.4实现语音交互?
如果可能,那么如何实施呢?
https://io2015codelabs.appspot.com/codelabs/voice-interaction#1
答案 0 :(得分:1)
您可以使用Speech to text
与手机互动。当您说话时。您可以将语音转换为文本(字符串)并使用条件进行检查。您可以使用Text to speech
获取音频输出比如google now
。
请参考speech to text和Text to Speech
答案 1 :(得分:0)
我们可以在Android参考资料上看到自API级别23(M)check here以来添加的API。所以你不能在4.4中使用它。 与预览API版本进行语音交互的唯一方法是使用TextToSpeech API,使用SpeechRecognition服务或实现SpeechListener接口(使用SpeechRecognizer来执行此操作)以执行ASR。
我希望这对你有所帮助。 见到你;)。