I keep getting messages: Unfortunately, "some Chinese" have stopped

enter image description here

I keep getting it every 10 seconds. What is it about? How can i fix this? This problem is not related to any application that I created, it just happens on the emulator I'm working on in eclipse. I thought this was a common "mistake." I can just dine avd, unlock the screen and wait a few seconds for this message to appear. This is my very first contact with the Android emulator, so I'm not so sure that I do not know what else to write. I found logcat, but it is empty.

+6
source share
6 answers

These Chinese characters say, โ€œThe input method isโ€œ PinYin Google, โ€so I guess this problem is related to the input method (PinYin is a way to mark the pronunciation of a character in Latin letters). It seems like this happens when you type something in a TextView There is a Google PinYin data input method on the emulator, and maybe something is wrong with this application. Disable it or create a new emulator.

Actually, how is your application on a real device?

enter image description here

+16
source

Perhaps there is a Japanese keyboard trying to start it, disable it from "Settings-> Language and Keyboard"

+3
source

Being a couple of days in Android development, I ran into the same problem. However, this only started after I played with the system settings of the emulator. I could have sworn I didnโ€™t change anything in the menu of languages โ€‹โ€‹and settings. But, since I checked it, and this dialogue appeared, I am sure that it was. My emulator has a lot of latency due to the fact that my dev machine is several years behind the times (good development practice by the way.)

So, I did the following:

enable: system settings-> Dev Settings and check Show cpu use

This shows all running Android processes. You will see:

com.android.pinyin immediately before the error.

google that error and hopefully come across this post.

return to the system settings-> Language and enter and change the default value to English.

+3
source

I had the same problem using the WXGA800 emulator 4.0.3, but could not disable the Chinese keyboard or the Japanese IME keyboard because the checkmark was grayed out (not blue). I was about to post a question when, by mistake, I clicked the "Default" button, performing various options, until I returned to English (USA). After that, fortunately, the message stopped appearing.

I tried to post the image to show the checkboxes and the default setting, but since the new user was unable.

+1
source

I have the same problem as @Bobby, with Android +4 verification is not available. The solution was to turn off the Chinese application. To disable access, go to "Settings"> "Applications", click on "ALL" in the tab of the action bar at the top, and at the end of the list you will find the application, then tap on the item, and on the next screen, click the "Power Stop" and "Disconnect "

0
source

This is my fix:

Settings> Language and input> Keyboard and input methods> Default> English (US)

The default is another language, and then go back to English (USA)

Message did not appear for more than 9000 seconds

0
source

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


All Articles