2012-01-26

Kindle Fire中文輸入法修改補完

因為手癢,想改輸入法,就整理了一下,但前提是有root,跟有adb程式


一開始我們要把管理輸入法的檔案複製到SDcard上,以便編輯
adb shell
su
cd /data/data/com.android.providers.settings/databases
cp settings.db settings.db.bak
cp settings.db /mnt/sdcard/

請利用SQLite editor將位於SDcard上的settings.db打開,把secure內的enabled_input_methods內容依照你的需要更改,之前使用:來區隔

Swype--com.swype.android.inputmethod/.SwypeInputMethod
英文鍵盤--com.oem.inputmethod.latin/.LatinIME(必要)
Google拼音--com.google.android.inputmethod.pinyin/.PinyinIME
超注音--tw.chaozhuyin/.ZhuYinIME
IQQI輸入法--com.iqt.iqqijni.f/.ZhuYinIME

存檔後,就只是複製回去,設定權限即可
adb shell
su
cd /data/data/com.android.providers.settings/databases
cp /mnt/sdcard/settings.db .
chown system.system settings.*
chmod 660 settings.*
reboot

PS:6.2.2後好像把cp給取消了,所以要靠有權限功能的file manager來搬移,我是用超級管理器




進入TWRP無限迴圈
打开ADB命令框输入以下命令:

adb shell
idme ?
idme bootmode 0*4000
reboot

3 則留言:

匿名 提到...

Great! This page must be also read by other people. It contains a lot of useful ideas where everybody will benefit. Two thumbs for this post
Mercedes Benz E500 AC Compressor

Vincent 提到...

我有Root explorer
請問在6.2.2要怎麼做?

LDS天下 提到...

我是把cp的相關指令,透過檔案管理器複製過去而已