简体   繁体   中英

eclipse - stuck with chinese in android virtual device

When I run my android emulator in eclipse, all my keyboard characters gets translated to chinese when I try to write text. Why is this?

Thanks

  1. Tap & hold on an EditText
  2. Select Input Method
  3. Select Android Keyboard

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 :)

What do you mean it gets translated to Chinese? From home screen, press Menu, Settings, Language and Keyboard..maybe you can tweak the settings there?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM