本文主要是我遇到的android命令行用法的一个简单总结
系统版本
获取系统版本:
adb shell getprop ro.build.version.release
获取系统api版本:
adb shell getprop ro.build.version.sdk
获取手机相关制造商信息:
adb shell getprop | grep “model|version.sdk|manufacturer|hardware|platform|revision|serialno|product.name|brand”
这个主要通过getprop读取了安卓系统的一些信息。
截屏
主要依赖于screencap命令。正常在shell中得到的版主信息如下:
screencap -h
usage: screencap [-hp] [-d display-id] [FILENAME]
-h: this message
-p: save the file as a png.
-d: specify the display id to capture, default 0.
If FILENAME ends with .png it will be saved as a png.
If FILENAME is not given, the results will be printed to stdout.
到此,截屏可以很简单的通过下面命令实现:
adb shell screencap -p /sdcard/1.png
据说可以通过screenrecord实现屏幕录制,但是在我的测试机上没找到这个命令这里不做过多解释了。