adb常用操作
Posted 小砖整理
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb常用操作相关的知识,希望对你有一定的参考价值。
1.安装程序
adb -s serialno install -r path
2.切换电源
adb -s serialno shell input keyevent 26
3.主页键
adb -s serialno shell input keyevent 3
4.回退键
adb -s serialno shell input keyevent 67
5.菜单键
adb -s serialno shell input keyevent 82
6.重启手机
adb -s serialno reboot
7.等待手机连接
adb -s serialno wait-for-device
8.得到设备状态
adb -s serialno get-state
9.移除所有端口映射
adb forward --remove-all
10.端口映射
adb forward tcp:localport tcp:remoteport
11.开启appservice
adb -s serialno shell am startservice -n com.keye/com.keye.service -a com.keye.ACTION_START
以上是关于adb常用操作的主要内容,如果未能解决你的问题,请参考以下文章