Home | History | Annotate | Download | only in quicksearchbox

Lines Matching defs:intent

21 import android.content.Intent;
51 protected Intent createVoiceSearchIntent() {
52 return new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
56 Intent intent = createVoiceSearchIntent();
58 resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
66 public Intent createVoiceWebSearchIntent(Bundle appData) {
68 Intent intent = createVoiceSearchIntent();
69 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
70 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
73 intent.putExtra(SearchManager.APP_DATA, appData);
75 return intent;
79 * Create an intent to launch the voice search help screen, if any exists.
80 * @return The intent, or null.
82 public Intent createVoiceSearchHelpIntent() {