adb常用命令

Posted 阿杰_linda

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb常用命令相关的知识,希望对你有一定的参考价值。

adb devices   查看手机是否连接到电脑

adb push D:/1.png /sdcard/1.png   将电脑文件传输到手机

adb pull /sdcard/1.png 2.png    将手机文件传输到电脑

adb pull /sdcard/1.png  将手机文件传输到电脑

adb install xxx.apk  在手机上下载apk

adb uninstall xxx.apk 卸载手机上的apk

 触屏

adb shell input tap 500 500

滑动

adb shell input swipe 900 500 100 500 

长按200ms

adb shell input swipe 500 500 501 501 200

截图

adb shell screencap -p /sdcard/screen.png

录屏

adb shell screenrecord sdcard/record.mp4

ctrl+c 结束录制

启动相机

adb shell am start -n com.android.camera/.Camera       (无法启动)

打开网页

默认浏览器

adb shell am start -a android.intent.action.VIEW-d http://baidu.com

 

以上是关于adb常用命令的主要内容,如果未能解决你的问题,请参考以下文章

ADB常用命令大全

adb测试常用命令

超实用的adb与adb shell常用命令汇总

Android 常用adb命令

常用的adb命令

adb shell monkey常用命令