美文网首页
Android ADB 常用命令

Android ADB 常用命令

作者: 冉冉升起的小太阳 | 来源:发表于2017-02-16 15:18 被阅读11次

    安装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

    相关文章

      网友评论

          本文标题:Android ADB 常用命令

          本文链接:https://www.haomeiwen.com/subject/kchhwttx.html