| android Programming Glossary: recognizerintent.extra_language_modelAndroid: Voice Recording and saving audio http://stackoverflow.com/questions/10905337/android-voice-recording-and-saving-audio  voiceIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM voiceIntent.putExtra.. 
 How To: Voice Commands into an android application http://stackoverflow.com/questions/11798337/how-to-voice-commands-into-an-android-application  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT.. RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT.. 
 Voice Recognition stops listening after a few seconds http://stackoverflow.com/questions/13670378/voice-recognition-stops-listening-after-a-few-seconds  this.iSpeechIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM this.iSpeechIntent.putExtra.. 
 Android Speech Recognition as a service on Android 4.1 & 4.2 http://stackoverflow.com/questions/14940657/android-speech-recognition-as-a-service-on-android-4-1-4-2  mSpeechRecognizerIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL   RecognizerIntent.LANGUAGE_MODEL_FREE_FORM mSpeechRecognizerIntent.putExtra.. 
 Using the Android RecognizerIntent with a bluetooth headset http://stackoverflow.com/questions/14991158/using-the-android-recognizerintent-with-a-bluetooth-headset  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM startActivityForResult.. 
 Speech recognition in Android http://stackoverflow.com/questions/3042752/speech-recognition-in-android  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_MAX_RESULTS.. 
 SpeechRecognizer causes ANR… I need help with Android speech API http://stackoverflow.com/questions/4559930/speechrecognizer-causes-anr-i-need-help-with-android-speech-api  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE.. 
 Is there a way to use the SpeechRecognizer API directly for speech input? http://stackoverflow.com/questions/4975443/is-there-a-way-to-use-the-speechrecognizer-api-directly-for-speech-input  RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE.. 
 Speech to Text on Android http://stackoverflow.com/questions/5913773/speech-to-text-on-android  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE.. 
 How can I use speech recognition without the annoying dialog in android phones http://stackoverflow.com/questions/6316937/how-can-i-use-speech-recognition-without-the-annoying-dialog-in-android-phones  RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE.. 
 Voice Recognition as a background service http://stackoverflow.com/questions/6372080/voice-recognition-as-a-background-service  RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE.. 
 Can't implement Google API Sample (VoiceRecognition) http://stackoverflow.com/questions/7256079/cant-implement-google-api-sample-voicerecognition  RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL  RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT.. 
 Android: Voice Recording and saving audio http://stackoverflow.com/questions/10905337/android-voice-recording-and-saving-audio  public void onClick View v Intent voiceIntent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH voiceIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM voiceIntent.putExtra RecognizerIntent.EXTRA_PROMPT Please Speak startActivityForResult.. 
 How To: Voice Commands into an android application http://stackoverflow.com/questions/11798337/how-to-voice-commands-into-an-android-application  void startVoiceRecognitionActivity Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT Speech recognition demo startActivityForResult.. void startVoiceRecognitionActivity Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT Speech recognition demo startActivityForResult.. 
 Voice Recognition stops listening after a few seconds http://stackoverflow.com/questions/13670378/voice-recognition-stops-listening-after-a-few-seconds  new SpeechListener this.iSpeechIntent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH this.iSpeechIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM this.iSpeechIntent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE voice.recognition.test.. 
 Android Speech Recognition as a service on Android 4.1 & 4.2 http://stackoverflow.com/questions/14940657/android-speech-recognition-as-a-service-on-android-4-1-4-2  mSpeechRecognizerIntent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH mSpeechRecognizerIntent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL   RecognizerIntent.LANGUAGE_MODEL_FREE_FORM mSpeechRecognizerIntent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE   this.getPackageName.. 
 Using the Android RecognizerIntent with a bluetooth headset http://stackoverflow.com/questions/14991158/using-the-android-recognizerintent-with-a-bluetooth-headset  support speech recognition return Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM startActivityForResult intent VOICE_RECOGNITION_REQUEST_CODE This works fine... 
 Speech recognition in Android http://stackoverflow.com/questions/3042752/speech-recognition-in-android  promptToUse int maxResultsToReturn Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_MAX_RESULTS maxResultsToReturn intent.putExtra.. 
 SpeechRecognizer causes ANR… I need help with Android speech API http://stackoverflow.com/questions/4559930/speechrecognizer-causes-anr-i-need-help-with-android-speech-api  I haven't been able to get over yet. Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE com.domain.app SpeechRecognizer.. 
 Is there a way to use the SpeechRecognizer API directly for speech input? http://stackoverflow.com/questions/4975443/is-there-a-way-to-use-the-speechrecognizer-api-directly-for-speech-input  View v  if v.getId R.id.btn_speak   Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE voice.recognition.test.. 
 Speech to Text on Android http://stackoverflow.com/questions/5913773/speech-to-text-on-android  from this stack overflow entry Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE com.domain.app SpeechRecognizer.. 
 How can I use speech recognition without the annoying dialog in android phones http://stackoverflow.com/questions/6316937/how-can-i-use-speech-recognition-without-the-annoying-dialog-in-android-phones  View v  if v.getId R.id.btn_speak   Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE voice.recognition.test.. 
 Voice Recognition as a background service http://stackoverflow.com/questions/6372080/voice-recognition-as-a-background-service  View v  if v.getId R.id.btn_speak   Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH  intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL RecognizerIntent.LANGUAGE_MODEL_FREE_FORM  intent.putExtra RecognizerIntent.EXTRA_CALLING_PACKAGE voice.recognition.test.. 
 Can't implement Google API Sample (VoiceRecognition) http://stackoverflow.com/questions/7256079/cant-implement-google-api-sample-voicerecognition  void startVoiceRecognitionActivity Intent intent new Intent RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent.putExtra RecognizerIntent.EXTRA_LANGUAGE_MODEL  RecognizerIntent.LANGUAGE_MODEL_FREE_FORM intent.putExtra RecognizerIntent.EXTRA_PROMPT Speech recognition demo startActivityForResult.. 
 |