【发布时间】:2022-05-06 19:04:26
【问题描述】:
如何使用adb shell input text 发送带有"some text" 等空格的文本?
找到以下解决方案
adb shell input text "some%stext" 工作正常。 但是有什么简单的方法可以用 %s 替换空格?
示例:
$ adb shell input text "some text"
Error: Invalid arguments for command: text
Usage: input [<source>] <command> [<arg>...]
The sources are:
keyboard
mouse
joystick
touchnavigation
touchpad
trackball
dpad
stylus
gamepad
touchscreen
The commands and default sources are:
text <string> (Default: touchscreen)
keyevent [--longpress] <key code number or name> ... (Default: keyboard)
tap <x> <y> (Default: touchscreen)
swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen)
press (Default: trackball)
roll <dx> <dy> (Default: trackball)
【问题讨论】: