这段代码在每台设备上都给了我2000个,所有以前关于这个问题的问题都给出了无关的答案。
请有人帮忙
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(getContext());
} 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(getActivity(), batteryCapacity + " mah",
Toast.LENGTH_LONG).show();
Log.d("Capacity",batteryCapacity+" mAh");
} catch (Exception e) {
e.printStackTrace();
}
}
但是我想要像CPU-Z app这样的最大容量:
答案 0 :(得分:0)
从随附的文档以及PowerProfile类的源代码中,方法getAveragePower()
返回:
以毫安为单位的平均电流。
相反,您必须使用返回
的getBatteryCapacity()
电池容量,单位为mAh
因此,您必须更改方法调用,因为getBatteryCapacity()
不接受任何参数,而getAveragePower()
采用两个参数,因此代码将如下:
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("getBatteryCapacity")
.invoke(mPowerProfile_);
Toast.makeText(MainActivity.this, batteryCapacity + " mah",
Toast.LENGTH_LONG).show();
} catch (Exception e) {
e.printStackTrace();
}
}