ADBKeyBoard 安装 (中文输入)

问题:

bash 复制代码
adb shell input text '你好嗎' 
is not going to work.

ADBKeyboard 在这些情况下会有所帮助,尤其是在设备自动化和测试中

1. 下载

github网址:https://github.com/senzhk/ADBKeyBoard?tab=readme-ov-file

apk下载:
https://github.com/senzhk/ADBKeyBoard/blob/master/ADBKeyboard.apk

将下载好的apk放置在cmd命令同一个文件夹中,同时手机开启权限,可通过adb安装应用

2. 安装

安装命令:

bash 复制代码
adb install ADBKeyboard.apk 

设置手机输入法

bash 复制代码
adb shell ime enable com.android.adbkeyboard/.AdbIME
adb shell ime set com.android.adbkeyboard/.AdbIME   

3.示例

使用案例

python 复制代码
import os
import base64

chars = "你好"
charsb64 = str(base64.b64encode(chars.encode("utf-8")))[1:]
os.system("adb shell am broadcast -a ADB_INPUT_B64 --es msg %s" % charsb64)

测试完成,返回原先的输入法:

原先输入法为:com.baidu.input_mi/.ImeService

bash 复制代码
adb shell ime set com.baidu.input_mi/.ImeService

其他命令

bash 复制代码
adb shell ime list -a   # Check your available virtual keyboards
adb shell ime reset  # Reset to default, don't care which keyboard was chosen before switch
相关推荐
工具人55551 天前
adb disable-verity
数据库·数据仓库·adb
dessler2 天前
MYSQL-多种方法安装部署
android·mysql·adb
Andy2 天前
Mysql基础1
数据库·mysql·adb
独行soc2 天前
2025年渗透测试面试题总结-224(题目+回答)
网络·python·安全·web安全·adb·渗透测试·安全狮
超人小子4 天前
mysql重置密码
数据库·mysql·adb
rexling14 天前
【MySQL】mysqldump使用方法
数据库·mysql·adb
xhbh6664 天前
【实战总结】MySQL日志文件位置大全:附查找脚本和权限解决方案
android·adb
xhbh6665 天前
【实战大全】MySQL连接全攻略:命令行+编程语言+可视化工具+故障排查
adb
木易 士心5 天前
在 Mac 上配置 ADB 环境变量:解决 “command not found: adb” 问题
macos·adb
2501_938782095 天前
《Ubuntu 系统下 MySQL 安装前的环境检查与依赖准备指南》
hive·mysql·ubuntu·adb