HomeSort by relevance Sort by last modified time
    Searched full:recognizerintent (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /development/samples/ApiDemos/src/com/example/android/apis/app/
VoiceRecognition.java 29 import android.speech.RecognizerIntent;
80 new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
107 Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
110 intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, getClass().getPackage().getName());
113 intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
116 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
117 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
121 intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 5);
127 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE,
142 RecognizerIntent.EXTRA_RESULTS)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.speech.RecognizerIntent.html 10 android.speech.RecognizerIntent
74 Class android.speech.<A HREF="../../../../reference/android/speech/RecognizerIntent.html" target="_top"><font size="+2"><code>RecognizerIntent</code></font></A>
86 <A NAME="android.speech.RecognizerIntent.getVoiceDetailsIntent_added(android.content.Context)"></A>
87 <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#getVoiceDetailsIntent(android.content.Context)" target="_top"><code>getVoiceDetailsIntent</code></A>(<code>Context</code>)</nobr>
102 <A NAME="android.speech.RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS"></A>
103 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#ACTION_GET_LANGUAGE_DETAILS" target="_top"><code>ACTION_GET_LANGUAGE_DETAILS</code></A></nobr>
109 <A NAME="android.speech.RecognizerIntent.DETAILS_META_DATA"></A>
110 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#DETAILS_META_DATA" target="_top"><code>DETAILS_META_DATA</code></A></nobr>
116 <A NAME="android.speech.RecognizerIntent.EXTRA_CALLING_PACKAGE"></A
    [all...]
pkg_android.speech.html 120 <A NAME="RecognizerIntent"></A>
121 <nobr><A HREF="android.speech.RecognizerIntent.html">RecognizerIntent</A></nobr>
  /frameworks/ex/common/java/com/android/common/speech/
Recognition.java 23 * @see android.speech.RecognizerIntent
29 * android.speech.RecognizerIntent#ACTION_GET_LANGUAGE_DETAILS
33 * android.speech.RecognizerIntent#EXTRA_LANGUAGE_PREFERENCE).
46 * android.speech.RecognizerIntent#ACTION_GET_LANGUAGE_DETAILS.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
VoiceSearch.java 27 import android.speech.RecognizerIntent;
52 return new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
70 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
71 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
android.speech.RecognizerIntent.html 10 android.speech.RecognizerIntent
74 Class android.speech.<A HREF="../../../../reference/android/speech/RecognizerIntent.html" target="_top"><font size="+2"><code>RecognizerIntent</code></font></A>
87 <A NAME="android.speech.RecognizerIntent.EXTRA_CONFIDENCE_SCORES"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#EXTRA_CONFIDENCE_SCORES" target="_top"><code>EXTRA_CONFIDENCE_SCORES</code></A></nobr>
94 <A NAME="android.speech.RecognizerIntent.EXTRA_ORIGIN"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#EXTRA_ORIGIN" target="_top"><code>EXTRA_ORIGIN</code></A></nobr>
pkg_android.speech.html 84 <A NAME="RecognizerIntent"></A>
85 <nobr><A HREF="android.speech.RecognizerIntent.html">RecognizerIntent</A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
android.speech.RecognizerIntent.html 10 android.speech.RecognizerIntent
74 Class android.speech.<A HREF="../../../../reference/android/speech/RecognizerIntent.html" target="_top"><font size="+2"><code>RecognizerIntent</code></font></A>
87 <A NAME="android.speech.RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#ACTION_VOICE_SEARCH_HANDS_FREE" target="_top"><code>ACTION_VOICE_SEARCH_HANDS_FREE</code></A></nobr>
94 <A NAME="android.speech.RecognizerIntent.EXTRA_SECURE"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#EXTRA_SECURE" target="_top"><code>EXTRA_SECURE</code></A></nobr>
pkg_android.speech.html 84 <A NAME="RecognizerIntent"></A>
85 <nobr><A HREF="android.speech.RecognizerIntent.html">RecognizerIntent</A></nobr>
  /frameworks/base/core/java/android/speech/
IRecognitionService.aidl 38 * @param recognizerIntent the intent from which the invocation occurred. Additionally,
40 * client. For more information see {@link RecognizerIntent}.
43 void startListening(in Intent recognizerIntent, in IRecognitionListener listener);
SpeechRecognizer.java 258 * @param recognizerIntent contains parameters for the recognition to be performed. The intent
259 * may also contain optional extras, see {@link RecognizerIntent}. If these values are
262 public void startListening(final Intent recognizerIntent) {
263 if (recognizerIntent == null) {
295 putMessage(Message.obtain(mHandler, MSG_START, recognizerIntent));
303 * using the intent extras defined in {@link RecognizerIntent}, in which case you may sometimes
339 private void handleStartListening(Intent recognizerIntent) {
344 mService.startListening(recognizerIntent, mListener);
RecognitionService.java 189 * @param recognizerIntent contains parameters for the recognition to be performed. The intent
190 * may also contain optional extras, see {@link RecognizerIntent}. If these values are
194 protected abstract void onStartListening(Intent recognizerIntent, Callback listener);
328 public void startListening(Intent recognizerIntent, IRecognitionListener listener) {
334 recognizerIntent, listener)));
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.speech.RecognizerIntent.html 10 android.speech.RecognizerIntent
74 Class android.speech.<A HREF="../../../../reference/android/speech/RecognizerIntent.html" target="_top"><font size="+2"><code>RecognizerIntent</code></font></A>
87 <A NAME="android.speech.RecognizerIntent.EXTRA_WEB_SEARCH_ONLY"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/RecognizerIntent.html#EXTRA_WEB_SEARCH_ONLY" target="_top"><code>EXTRA_WEB_SEARCH_ONLY</code></A></nobr>
pkg_android.speech.html 84 <A NAME="RecognizerIntent"></A>
85 <nobr><A HREF="android.speech.RecognizerIntent.html">RecognizerIntent</A></nobr>
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 22 import android.speech.RecognizerIntent;
555 * Sets the text of the search query based on the {@link RecognizerIntent#EXTRA_RESULTS} in
563 ArrayList<String> matches = intent.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
571 * Built from the base {@link RecognizerIntent#ACTION_RECOGNIZE_SPEECH} plus
575 * <li>{@link RecognizerIntent#EXTRA_LANGUAGE_MODEL} set to
576 * {@link RecognizerIntent#LANGUAGE_MODEL_FREE_FORM}</li>
577 * <li>{@link RecognizerIntent#EXTRA_PARTIAL_RESULTS} set to true</li>
578 * <li>{@link RecognizerIntent#EXTRA_PROMPT} set to the search bar hint text</li>
585 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)
    [all...]
SearchSupportFragment.java 24 import android.speech.RecognizerIntent;
557 * Sets the text of the search query based on the {@link RecognizerIntent#EXTRA_RESULTS} in
565 ArrayList<String> matches = intent.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
573 * Built from the base {@link RecognizerIntent#ACTION_RECOGNIZE_SPEECH} plus
577 * <li>{@link RecognizerIntent#EXTRA_LANGUAGE_MODEL} set to
578 * {@link RecognizerIntent#LANGUAGE_MODEL_FREE_FORM}</li>
579 * <li>{@link RecognizerIntent#EXTRA_PARTIAL_RESULTS} set to true</li>
580 * <li>{@link RecognizerIntent#EXTRA_PROMPT} set to the search bar hint text</li>
587 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/util/
FeatureUtilities.java 16 import android.speech.RecognizerIntent;
33 * Determines whether or not the {@link RecognizerIntent#ACTION_WEB_SEARCH} {@link Intent}
47 new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchViewController.java 27 import android.speech.RecognizerIntent;
78 final Intent voiceIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
288 final Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
289 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
290 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
291 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault().getLanguage());
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
MainRecognitionService.java 37 protected void onStartListening(Intent recognizerIntent, Callback listener) {
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
SpeechRecognition.java 17 import android.speech.RecognizerIntent;
213 mIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
262 mIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, language);
263 mIntent.putExtra(RecognizerIntent.EXTRA_PARTIAL_RESULTS, interimResults);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/util/
FeatureUtilitiesTest.java 12 import android.speech.RecognizerIntent;
41 RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
44 RecognizerIntent.ACTION_WEB_SEARCH);
  /frameworks/base/docs/html/training/wearables/apps/
voice.jd 249 the {@link android.speech.RecognizerIntent#ACTION_RECOGNIZE_SPEECH} action. This starts the
257 Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
258 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
259 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
271 RecognizerIntent.EXTRA_RESULTS);
  /development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionService.java 43 protected void onStartListening(Intent recognizerIntent, Callback listener) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 28 import android.speech.RecognizerIntent;
560 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
562 recognizerIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
563 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
564 recognizerIntent.putExtra(RecognizerIntent.EXTRA_PARTIAL_RESULTS, true);
683 mSpeechRecognizer.startListening(recognizerIntent);
  /frameworks/base/docs/html/about/versions/
android-1.5-highlights.jd 192 android.speech.RecognizerIntent RecognizerIntent}.</li>

Completed in 1642 milliseconds

1 2 3 4