就像标题所说的那样,SpeechRecognizer可以识别其他语言吗?如果我想让它识别普通话而不是英语,我该如何设置?谢谢。
答案 0 :(得分:2)
我不知道Google语音识别器引擎是否支持普通话,但如果是,那么您可以使用EXTRA_LANGUAGE来识别普通话
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "zh-cmn");
文档链接http://developer.android.com/reference/android/speech/RecognizerIntent.html#EXTRA_LANGUAGE