Why is my Android emulator keyboard in Chinese character mode?

AndroidAndroid Emulator

Android Problem Overview


I'm debugging my Android application using the AVD (Android Virtual Device). When I try to enter text in a text field, my characters are being interpreted as Chinese in the IME.

I don't know how I got into this mode or how to get out of it (I just want to enter alphabetic keys)?

Here's a screen shot:

http://u.go2.me/3cn

Android Solutions


Solution 1 - Android

If you were running monkey at some point, it probably changed the input method — it happens quite often.

You can change the input method by long-pressing on an input field and choosing Input Method → Android Keyboard. I think you can also long-press on the bottom-left key on the virtual keyboard.

Note you can also disable the Japanese and other input methods from being activated entirely via Settings → Keyboard → untick the box next to each IME.

Solution 2 - Android

I have a very simple trick..I found that.. Just go to the default browser provided in the emulator..then click on the address bar of the browser.. Magic....your language is now changed to English..

Solution 3 - Android

Or you can just long press a

> Text Field > Input Method > Android Keyboard

See: https://stackoverflow.com/questions/11724993/i-cannot-remove-the-japanese-ime-from-my-android-emulator

Solution 4 - Android

For emulator you can run such two commands to remove Pinyin IME (so latin would become default): > > adb shell > > # mount -rw -o remount /dev/block/mtdblock0 /system > > # rm /system/app/PinyinIME.apk

the same, but easier to put into Jenkins: > > adb shell mount -rw -o remount /dev/block/mtdblock0 /system > > > adb shell rm /system/app/PinyinIME.apk

You can first check which device is mounted to /system by running > # mount

in adb shell.

If you need to remove another IME - just change a filename in "rm" command.

Note: this will remove Pinyin IME completely. While you're not completely sure - don't do it on real devices as it would be hard to bring that IME back :)

Solution 5 - Android

My Answer was simple: Changing Keyboard & Input Methods to English and Language English

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmckossView Question on Stackoverflow
Solution 1 - AndroidChristopher OrrView Answer on Stackoverflow
Solution 2 - AndroidAnkurView Answer on Stackoverflow
Solution 3 - AndroidRicardo RivaldoView Answer on Stackoverflow
Solution 4 - AndroidsergeytchView Answer on Stackoverflow
Solution 5 - AndroidDevrathView Answer on Stackoverflow