adb常用操作
(1)adb进入shell
adb shell //进入android
su root//切换为root
exit //退出root
(2)安装和卸载apk
adb -s 9a68864e install apk/termux.apk //apk路径为adb.exe的相对路径
adb -s 9a68864e uninstall com.termux
(3)adb查看包名和活动名
打开APP
logcat | grep -i ActivityManager
ActivityManager:Displayed后即为包名和活动名
(4)shell打开和关闭app
打开:am start -n com.termux/.app.TermuxActivity
关闭:am force-stop com.termux
(5)常用操作
点击 adb shell input tap 624 1167
返回键 adb shell input keyevent 4
菜单键 adb shell input keyevent 82
输入文本 adb shell input text abc
长按 adb shell input swipe 109 163 109 163 1500
滑动 adb shell input swipe 50 600 500 600 500
(6)python操作adb
运行adb命令
import os
os.system('adb devices')
输出命令返回信息
info=os.popen("adb devices").read()
print(info)