1、通过adb进入手机Linux系统;$ adb shell2、使用screencap命令来截图;shell@rk3288:/ $ adb pull /sdcard/1.png3、退出手机Linux系统,回到我们的Linux终端,通过adb pull命令将图片发送出来;$ adb pull /sdcard/1.png...
分类:
移动开发 时间:
2015-04-15 21:32:06
阅读次数:
488
时间限制视频录制:
screenrecord --time-limit 20 /sdcard/demo.mp4
抓屏:
screencap -p /sdcard/screen.png
screenshot /sdcard/screen.png
视频录制命令screenrecord
# screenrecord --help ...
分类:
移动开发 时间:
2015-04-10 15:36:54
阅读次数:
940
RootCommand("su -c ‘screencap /mnt/sdcard/screenaaa.png‘ && adb pull /sdcard/screenaaa.png") ;
/**
* 应用程序运行命令获取 Root权限,设备必须已破解(获得ROOT权限)
*
* @param command
* ...
分类:
移动开发 时间:
2015-01-27 13:38:53
阅读次数:
350
1、截图指令screencap /mnt/sdcard/1234.png2、分辨率获取adb shell dumpsys window displays 或 adb shell dumpsys window结果如:init=1080x1920 480dpi cur=1080x1920 app=108...
分类:
移动开发 时间:
2014-12-10 21:07:35
阅读次数:
388
1.adb--- 截取屏幕的命令 :adb shell screencap -p | sed 's/\r$//' > outputs.png
2.jni ---命令 :$NDK/ndk-build
3. adb 启动程序:adb shell am start -n 包名/程序Activity类的类名(main)
adb 安装程序: adb install + 路径
...
分类:
移动开发 时间:
2014-06-19 10:17:59
阅读次数:
263
查看帮助命令
bixiaopeng@bixiaopeng ~$ adb shell screencap -v
screencap: invalid option -- v
usage: screencap [-hp] [-d display-id] [FILENAME]
-h: this message
-p: save the file as a png.
-d: speci...
分类:
移动开发 时间:
2014-06-08 05:06:26
阅读次数:
353