Android emulator has Chinese characters

I recently started using eclipse and the AVD emulator to develop Android applications for the droid. Everything goes well, except when I type in an emulator, it returns Chinese characters. My location is set to en-us, so I'm not sure what is going on.

Any thoughts?

+4
source share
2 answers

You can change the input method by long pressing on the input field and selecting "Input Method" → "Android Keyboard". You can also long press the lower left key on the virtual keyboard.

+23
source

You can run these two commands to remove Pinyin IME (so that Latin would become the default):

> adb shell # mount -rw -o remount /dev/block/mtdblock0 /system # rm /system/app/PinyinIME.apk 

same, but easier to put in Jenkins:

 > adb shell mount -rw -o remount /dev/block/mtdblock0 /system > adb shell rm /system/app/PinyinIME.apk 

First you can check which device is installed on / system by running

 # mount 

in adb shell.

If you need to delete another IME, just change the file name in the "rm" command. Note: this will remove Pinyin IME completely. Although you are not quite sure - do not do this on real devices, as it would be difficult to return this IME :)

0
source

Source: https://habr.com/ru/post/1311674/


All Articles