How can I get the system setting for the "Google voice typing" languages?
Hi,
I am writing an app in which I have integrated speech recognition for 3 different languages.
However I would like to select between languages based on the setting in the Google voice typing languages:
Settings->Language & input -> Google voice typing -> Languages
I have managed to get the default "Language & input" language by calling:
String myLanguage = java.util.Locale.getDefault().getDisplayName();
But I couldn't figure out how to retrieve the language that is being set under the google Voice typing...
Does anyone know?