i write this code:
Intent voiceSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
voiceSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
startActivityForResult(voiceSearchIntent, 1);
i want to detect the language of speeched sentence. But when i run the intent it listens only English(US) language:
is possibile run the Intent in generic mode and retrieve the spoken sentence?
Thanks so much.