アプリが音声を受信して送信する音声認識アプリを作成しようとしています。onEndOfSpeech メソッドを呼び出して 1 秒待ってから、音声認識インテント全体を最初からやり直してください。
public void onEndOfSpeech() {
Log.d("Speech", "onEndOfSpeech");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
mSpeechRecognizer.startListening(mSpeechRecognizerIntent);
}
これを正しく行っているかどうかわかりません。ありがとう!