是否可以在Android 4.4上实现语音交互?

时间:2016-01-07 12:27:07

标签: android google-search

是否可以为Android 4.4实现语音交互?

如果可能,那么如何实施呢?

https://io2015codelabs.appspot.com/codelabs/voice-interaction#1

2 个答案:

答案 0 :(得分:1)

您可以使用Speech to text与手机互动。当您说话时。您可以将语音转换为文本(字符串)并使用条件进行检查。您可以使用Text to speech获取音频输出比如google now。 请参考speech to textText to Speech

答案 1 :(得分:0)

我们可以在Android参考资料上看到自API级别23(M)check here以来添加的API。所以你不能在4.4中使用它。 与预览API版本进行语音交互的唯一方法是使用TextToSpeech API,使用SpeechRecognition服务或实现SpeechListener接口(使用SpeechRecognizer来执行此操作)以执行ASR。

我希望这对你有所帮助。 见到你;)。