我正在估计约。使用以下方法在Android中剩余电池时间,但在所有时间都不准确。请提供任何提高准确性的建议,
谢谢
public static String getBatteryEstimation(Context context){
String contentText = "";
try{
//timestamp recorded when battery reach 20%
long time1 = PreferencesUtil.getInstance().getLong(PreferencesUtil.KEY_BATTERY_THERESHOLD_TIME_1);
//timestamp recorded when battery reach 15%
long time2 = PreferencesUtil.getInstance().getLong(PreferencesUtil.KEY_BATTERY_THERESHOLD_TIME_2);
long timeDiffInMillis = time2 - time1;
long timeTakenFor1Percentage = Math.round(timeDiffInMillis/5);
long timeLastForNext15Percentage = timeTakenFor1Percentage * 15;
long hoursLast = Math.abs(TimeUnit.MILLISECONDS.toHours(timeLastForNext15Percentage));
long minutesLast = Math.abs(TimeUnit.MILLISECONDS.toMinutes(timeLastForNext15Percentage)- TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS.toHours(timeLastForNext15Percentage)));
String timeLastMessage = "";
if(hoursLast > 0){
timeLastMessage = String.valueOf(minutesLast)+" hour(s) "+String.valueOf(minutesLast) + " min(s)";
} else {
timeLastMessage = String.valueOf(minutesLast) + " min(s)";
}
DateFormat dateFormat = new SimpleDateFormat("HH:mm dd MMM");
Date date = new Date();
contentText = String.format(context.getString(R.string.battery_low_content_1), timeLastMessage, dateFormat.format(date));
} catch (Exception e){
e.printStackTrace();
}
return contentText;
}
答案 0 :(得分:2)
估算剩余电池寿命取决于分析。正如其他人所说,你必须听取电池电量变化,此外你必须跟踪它们。一段时间后,您将有足够的数据来计算电池持续的平均时间。此外,您知道电池何时快速耗尽以及何时排水速度较慢,因此您可以根据此情况改善估计。您还将知道用户在何时收取设备费用。有很多事件可以跟踪并使用电池电量。此外,您还可以跟踪屏幕打开或关闭的时间。计算剩余电池寿命的算法取决于您:)
你可以试试这个:
从电池统计信息中收集所有信息,并统计使用情况。然后计算每秒的使用量,每秒耗尽的电量。
以mAh为单位获取电池容量,并使用以下公式计算剩余电量:每次使用速度的总容量
我希望这能解释(至少有点)。