Reputation: 2171
How to change the language of the Emulator? By default I am getting Chinese while filling a form.
Please help me to get out of this.
Upvotes: 33
Views: 87644
Reputation: 1812
For the new simulators, just your new language in
Settings -> System -> Languages & Input,
then re-order your desired device locale at the top of the languages list
this is the key!
It will automatically switch UI for RLT/LTR, and change system locale.
Upvotes: 43
Reputation:
Use this to set locale programmatically:
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = getBaseContext().getResources().getConfiguration();
config.locale = locale;
Upvotes: 10
Reputation: 33996
There are few possible solutions to change the device language.
Upvotes: 47
Reputation: 7717
It depends form the version emulator.
On Android 4.0: Home -> Central Menu -> Custom Locale
Upvotes: 14
Reputation: 159
You can disable the Japanese and other input methods from being activated entirely via Settings -→ Keyboard -→ untick the box next to each IME.
Upvotes: 0