赞
踩
查看手机型号
adb shell getprop ro.product.model
查看电池状况
adb shell dumpsys battery
查看分辨率
adb shell wm size
查看屏幕密度
adb shell wm density
查看显示屏参数
adb shell dumpsys window displays
查看android_id
adb shell settings get secure android_id
查看IMEI
adb shell dumpsys iphonesubinfo
而在 Android 5.0 及以上版本里这个命令输出为空,得通过其它方式获取了(需要 root 权限):
adb shell
su
service call iphonesubinfo 1
查看 Android 系统版本
adb shell getprop ro.build.version.release
查看IP地址
adb shell ifconfig | grep Mask
在有的设备上这个命令没有输出,如果设备连着 WiFi,可以使用如下命令来查看局域网 IP:
adb shell ifconfig wlan0
如果以上命令仍然不能得到期望的信息,那可以试试以下命令(部分系统版本里可用):
adb shell netcfg
查看Mac地址
adb shell cat /sys/class/net/wlan0/address
查看CPU信息
adb shell cat /proc/cpuinfo
查看内存信息
adb shell cat /proc/meminfo
查看硬件与系统属性
adb shell cat /system/build.prop
# 单独查看属性属性名
adb shell getprop <属性名> 含义
ro.build.version.sdk SDK 版本
ro.build.version.release Android 系统版本
ro.build.version.security_patch Android 安全补丁程序级别
ro.product.model 型号
ro.product.brand 品牌
ro.product.name 设备名
ro.product.board 处理器型号
ro.product.cpu.abilist CPU 支持的 abi 列表
persist.sys.isUsbOtgEnabled 是否支持 OTG
dalvik.vm.heapsize 每个应用程序的内存上限
ro.sf.lcd_density 屏幕密度
一些小厂定制的 ROM 可能修改过 CPU 支持的 abi 列表的属性名,如果用ro.product.cpu.abilist属性名查找不到,可以这样试试:
adb shell cat /system/build.prop | grep ro.product.cpu.abi
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。