adb 截屏保存到电脑
2018-06-26 本文已影响0人
MiniC
1.先将截屏图片保存到SDCard中,这个过程需要点时间,最好等个1s
adb shell /system/bin/screencap -p /sdcard/screen.png
2.将图片保存到电脑指定路径中
adb pull /sdcard/screen.png d:/screen.png
3.删除掉sdcard中的图片(可以选择不删除)
adb shell rm /sdcard/screen.png