我想获取设备的电池容量来进行一些电池消耗计算,是否可以以某种方式获取它?例如,三星 Galaxy Note 2 的电池容量为 3100mAh。谢谢你的帮助。
明白了!在 SDK 中无法直接找到任何内容,但可以使用反射来完成。
这是工作代码:-
public void getBatteryCapacity() {
Object mPowerProfile_ = null;
final String POWER_PROFILE_CLASS = "com.android.internal.os.PowerProfile";
try {
mPowerProfile_ = Class.forName(POWER_PROFILE_CLASS)
.getConstructor(Context.class).newInstance(this);
} catch (Exception e) {
e.printStackTrace();
}
try {
double batteryCapacity = (Double) Class
.forName(POWER_PROFILE_CLASS)
.getMethod("getAveragePower", java.lang.String.class)
.invoke(mPowerProfile_, "battery.capacity");
Toast.makeText(MainActivity.this, batteryCapacity + " mah",
Toast.LENGTH_LONG).show();
} catch (Exception e) {
e.printStackTrace();
}
}
你能用一个绝对的假人来解释一下我如何用我的手机实现它并找出它的电池容量吗? (以及我需要预装哪些程序)