简体   繁体   中英

Changing languages on an android device with ADB

So I came across the answer here . The command:

adb shell "setprop persist.sys.language fr; setprop persist.sys.country CA; setprop ctl.restart zygote"

However after using this command I could no longer change the language with ADB again. I've tried other variations (even back to English to no avail). Such as:

adb shell "setprop persist.sys.language zh; setprop persist.sys.country CN; setprop ctl.restart zygote"

adb shell "setprop persist.sys.language es; setprop persist.sys.country ES; setprop ctl.restart zygote"

adb shell "setprop persist.sys.language en; setprop persist.sys.country US; setprop ctl.restart zygote"

Each command visibly did nothing. What am I missing here?

Are you on adb root?

I face the same issue and then moving to adb root and executing change language command works.

here is what I did:

adb root
adb shell "setprop persist.sys.language fr; setprop persist.sys.country CA; setprop ctl.restart zygote"

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