热门搜索 :
考研考公
您的当前位置:首页正文

Android ADB 常用命令

来源:东饰资讯网

安装Apk 命令

adb install (apk 直接拖拽过来就可以了) 

向手机中写入文件

adb push D:\file.txt/ststem/temp/

从手机中获取文件

adb pull /systme/temp/D:\file.txt

启动一个Activity

 adb shell am start -n 包名/包名+类名

录制屏幕

adb shell screenrecord/sdcard/demo.mp4

重新启动

adb reboot

Top