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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
There are few possible solutions to change the device language.
- Open menu -> Setting -> Language & Keyboard -> Select Locale. Set any locale from this. It depends on android os version and on device manufacturer.
- Emulator contains app called "Custom Locale". using that app also you can change the locale of your emulator. I didn't check all type of emulator running on different types of CPU and android version so its not gerrently that this app is present in the emulator.
回答2:
It depends form the version emulator.
On Android 4.0: Home -> Central Menu -> Custom Locale
回答3:
Use this to set locale programmatically:
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = getBaseContext().getResources().getConfiguration();
config.locale = locale;
回答4:
You can disable the Japanese and other input methods from being activated entirely via Settings -→ Keyboard -→ untick the box next to each IME.