I am developing an app where user can speak the command and it will get executed. Just like "Voice Search" app from Google. I want to use set of commands associated actions of Voice Search.
My code is as follows:
@Override
public void startVoiceRecognitionActivity() {
// TODO Auto-generated method stub
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Command me");
startActivityForResult(intent, REQUEST_CODE);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQUEST_CODE: {
ArrayList<String> matches = data
.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
ApplicationDebug.printlog("got inside onactivityresult");
String spokenText = matches.get(0);
Toast.makeText(getApplicationContext(), spokenText,
Toast.LENGTH_LONG).show();
// super.onActivityResult(requestCode, resultCode, data);
break;
}
}
}
on some button click I am calling startVoiceRecognitionActivity()
.
It is detecting the voice correctly but the action is not happening here. What I mean exactly is if I say "Open Calculator", it shows the text correctly, but does not open calculator app.
Sounds like you're looking for this:
RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE