I found this on stackoverflow: How to set the language in speech recognition on android? . The top answer explains how to do so programmatically by broadcasting an intent with the list of languages to a new activity and you can store that list in a Bundle object. But how do you retrieve the list of languages from the Bundle object?
Asked
Active
Viewed 4,569 times
1
-
1If I understand you correctly, [this](http://developer.android.com/reference/android/os/Bundle.html) is all you need. And isn't that `getStringArrayList` call from the other post what you want? – keyser Feb 08 '14 at 23:10