I have not installed Google Voice Search on my Android phone. I canβt install it because it is available only to the USA. But the vilingo app works well on my Android phone. In my own voice recognition application, he says "Recognizer not present".
this is the code i use from the android developer site.
List<ResolveInfo> activities = pm.queryIntentActivities( intent, pm.MATCH_DEFAULT_ONLY); if (activities.size() == 0) { speakButton.setEnabled(false); speakButton.setText("Recognizer not present"); }
why does it return an empty list from previous code?
Many thanks.
source share