I'm wanted to know if there any way i could set the default language of the virtual keyboard of an EditText in Android?
Every time i get focus on my EditText it opens the virtual keyboard with my native language instead of English.
I guess it something with the device settings, but if there is a way to program that in Android development that would be terrific.
LocaleHelper” is the solution all you need. You just have to initialize locale on your application’s main class. After that all your language changes will persist.In application class make following changes:
LocalHelper.java will be:
}
For detail description you refer this link.
Hope it will help you.