Possible Duplicate:
Change Android KeyBoard language
Android supports the localization from application, Please find the sample code here
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config, null);
My application contains the activity which has one editText. But after changing locale from application, when i click on editText to write, android keyboard launches and it doesn't display any locale changes on keyboard's OK button.
Is there any work around for EditText locale ?
Thanks,