[TOC]

调试工具分类

(1) ADB

0x00 ADB

1. ADB介绍

描述:adb(安卓调试桥,Android Debug Bridge Tools),她就是一个命令行窗口,用于电脑端于安卓系统手机设备或者模拟器设备进行交互;特别是在某些情况下进入不了系统的时候adb就派上用场了;

2. ADB命令参数
1
2
3
4
5

adb shell screencap -p /sdcard/screen.png #截屏
adb pull /sdcard/sreen.png #保存
adb shell input tap x y #点击(x,y)即坐标
adb shell input swipe x1 y1 x2 y2 #翻页