adb操作
查看设备
单个设备 直接adb shell
多个设备 adb devices
进入指定设备 adb -s 设备名 shell
模拟点击
点击100,200的点:adb shell input tap 100 200
安装软件
1.安装:adb install C:/Users/Administrator/Desktop/HB.apk
2.覆盖安装:adb install -r xxx.apk强制安装(覆盖安装时使用)
3.安卓测试软件:adb install -t test.apk
卸载包:
adb uninstall 安装包包名
启动软件
adb shell am start 包名/.要启动的activity名字
例:adb shell am start com.example.testzq/.MainActivity
adb操作最先出现在Python成神之路。
共有 0 条评论