adb工具的简单使用(学习和笔记)

网站上找的adb解压包解压到adb文件夹:adb工具的简单使用(学习和笔记)_第1张图片

记住自己的解压路径;

例如我的是D:\PyCharm 5.0.3\adb,然后可以有好几种使用方式

1.在空白处使用shift+鼠标右键,可打开powershell,键入.\adb即可开始adb工具的简单使用(学习和笔记)_第2张图片

2.用cmd进路径 cd D:\PyCharm 5.0.3\adb    adb工具的简单使用(学习和笔记)_第3张图片

之后就可以在这个页面看adb的使用方法:

例如adb devices [-l]                  - list all connected devices        列出连接的设备

adb工具的简单使用(学习和笔记)_第4张图片

adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program   重启手机,至于bootloader我不大清楚

adb start-server             - ensure that there is a server running     启动连接
  adb kill-server              - kill the server if it is running          停止连接

adb工具的简单使用(学习和笔记)_第5张图片看结果

放个有趣的东西:

 adb install [-lrtsd]
  adb install-multiple [-lrtsdp]
                               - push this package file to the device and install it         --看英文就是个装软件的操作

 adb uninstall [-k] - remove this app package from the device
                                 ('-k' means keep the data and cache directories)       ---反操作啦

还有各种传输文件,装卸软件的操作的操作。懂点英文这些都能看得懂,不难。更方便可以去查别人写的博客,都会有的

shell命令:input能看命令说明(百度查的)

adb工具的简单使用(学习和笔记)_第6张图片

我们能进行简单操作:input touchscreen(可不写default) tap x y   --点击的动作adb工具的简单使用(学习和笔记)_第7张图片

其中后面的两个参数为点的坐标

adb工具的简单使用(学习和笔记)_第8张图片imput touchscreen(可不写default) draganddrop x1 y1 x2 y2   --拖动的动作,有趣

imput touchscreen(可不写default) swipe x1 y1 x2 y2     --滑动的动作

。。。。。还有几个就不一一演示了。

 

你可能感兴趣的:(adb)