1

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?

Community
  • 1
  • 1
yellowbyte
  • 189
  • 1
  • 2
  • 13
  • 1
    If 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

2 Answers2

0

check this post. As it mentioned,

your app can query for the list of supported languages by sending a RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS ordered broadcast

Community
  • 1
  • 1
jiashie
  • 147
  • 1
  • 11
0

If you use Speech Recognition API on Android for Google then check this.

bnson
  • 222
  • 3
  • 7