!759 !include #1001279 // Leopold !include #1001293 // Emoticons !include #1005191 // Logic (repeat input) p { noSpeech = true; // Just recognition, don't talk showPicture = false; // Let us see the text output leoMain(); } svoid recogTimeSettings(Intent intent) { print("setting speech params"); // 1 second minimum speech length intent.putExtra(RecognizerIntent.EXTRA_SPEECH_INPUT_MINIMUM_LENGTH_MILLIS, 1000); // Stop listening after pause of 1 second intent.putExtra(RecognizerIntent.EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLIS, 1000); intent.putExtra(RecognizerIntent.EXTRA_SPEECH_INPUT_COMPLETE_SILENCE_LENGTH_MILLIS, 1000); }