输入banner图图片脚本导航/分类

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常用命令

标签:screen   and   触屏   浏览器   查看   无法   相机   打开   device