0
我寫這樣的代碼:檢測語言從RecognizerIntent
Intent voiceSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
voiceSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(voiceSearchIntent, 1);
我想檢測speeched句子的語言。但是,當我運行它只聽英語(美國)語言的意圖:
是不可能性奔跑在通用模式和檢索說出的句子的意圖是什麼?
非常感謝。
謝謝你的回答! – Antonio