adb shell命令

adb shell am start -a android.intent.action.CALL tel:xxxxx //拨打电话
adb install E:\test.apk //安装app test
adb uninstall 包名 // 卸载软件
adb shell getevent //获取事件(报点)
adb shell getevent -p //查看设备报告的所有键和轴
adb shell getevent -l //显示所有事件代码的文字标签

adb root //获取root 权限
adb remount //重新分区
adb push E:\test1.txt /data/
如果遇到failed to copy ‘./xxx’ to ‘/xxx/xxx’: Read-only file system,则可以使用下面的命令尝试下
adb root
adb remount
adb disable-verity
adb reboot
adb root
adb remount

adb push E:\test1.txt /data/ //将e盘下的test1文件 推送到系统/data/目录下
adb pull /data/test2.txt . //将系统上/data/目录下的test2.txt 文件复制到当前目录

按键事件
adb shell input keyevent 24 //增加音量
adb shell input keyevent 25 //减小音量
85 播放/暂停
86 停止播放
87 播放下一首
88 播放上一首
126 恢复播放
127 暂停播放
220 降低屏幕亮度
221提高屏幕亮度

滑动解锁
adb shell input swipe 300 1000 300 500
//参数 300 1000 300 500 分别表示起始点x坐标 起始点y坐标 结束点x坐标 结束点y坐标

你可能感兴趣的:(adb)