android手机耗电量测试

1.使用硬件仪器测试

android手机接假电池,然后就可以测试了,这个不懂,跳过。

2.粗侧

通过手机顶部的状态栏电量显示,来统计单位时间内电量的消耗。一般用于手机整机测试。

3.通过adb获取手机电量

a)获取app的userId

adb shell dumpsys package com.oecommunity.oeshop | find "userId"

b)重置电池数据

adb shell dumpsys batterystats --reset

c)获取电池数据

adb shell dumpsys batterystats >d:/battery.txt

d)根据app的userId查看

在文档里面搜索Estimated power use,根据userId找到对应app的电量数据。

4.其他工具

 

你可能感兴趣的:(移动端测试)