adb 命令 pc端 "复制粘贴" 文本到android设备

Posted 左正

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb 命令 pc端 "复制粘贴" 文本到android设备相关的知识,希望对你有一定的参考价值。

假如你像我一样在寻找android下通过命令复制粘贴的方法。
不过android上是没有直接进行复制粘贴剪切板的命令,只有间接实现:

1、android设备

首先android设备上,要把光标焦点定位到需要输入的文本框,比如当你输入用户名密码的时候

2、PC端

电脑上adb连接好android设备
cmd 命令行
1、adb shell input text hell0
则hello自动的填到获得焦点的输入框了
2、adb shell input keyevent 61
输入tab键定位到下一输入框,
tab键的key code是61 --> "KEYCODE_TAB"
adb shell input keyevent 61
adb shell input keyevent 3
adb shell input keyevent 82
具体数值 看android源码 android.view.KeyEvent.java
KEYCODE列表
3、input的命令

C:\\Users\\Administrator>adb shell input help
Error: Unknown command: help
usage: input ...
       input text <string>
       input keyevent <key code number or name>
       input [touchscreen|touchpad] tap <x> <y>
       input [touchscreen|touchpad] swipe <x1> <y1> <x2
       input trackball press
       input trackball roll <dx> <dy>


作者:proud2008
链接:https://www.jianshu.com/p/d818290f70e5/
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

以上是关于adb 命令 pc端 "复制粘贴" 文本到android设备的主要内容,如果未能解决你的问题,请参考以下文章

电脑命令行控制安卓手机

Android 逆向Android 逆向通用工具开发 ( adb forward 网络端口重定向命令 | PC 端逆向程序主函数分析 )

如何启动adb shell命令?

Android端adb使用相关总结(转载)

adb 常用命令

adb常用命令