sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install android-tools-adb
打开设备usb调试,连接电脑,查看usb设备,可以查看到手机已连接。
adb查看所有已经连接上的设备
abd shell 进入设备操作,如连接多个设备,使用 abd -s [ID] shell
测试:亮屏
input keyevent 26
input tap [x] [y] #模拟点击
input swipe [x_start] [y_start] [x_end] [y_end] #模拟滑动
input swipe 100 100 100 100 1000 # 在(100,100)处长按1000ms