summaryrefslogtreecommitdiff
path: root/android/os/BatteryManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/os/BatteryManager.java')
-rw-r--r--android/os/BatteryManager.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/android/os/BatteryManager.java b/android/os/BatteryManager.java
index 63631618..954071a0 100644
--- a/android/os/BatteryManager.java
+++ b/android/os/BatteryManager.java
@@ -353,4 +353,20 @@ public class BatteryManager {
public static boolean isPlugWired(int plugType) {
return plugType == BATTERY_PLUGGED_USB || plugType == BATTERY_PLUGGED_AC;
}
+
+ /**
+ * Compute an approximation for how much time (in milliseconds) remains until the battery is
+ * fully charged. Returns -1 if no time can be computed: either there is not enough current
+ * data to make a decision or the battery is currently discharging.
+ *
+ * @return how much time is left, in milliseconds, until the battery is fully charged or -1 if
+ * the computation fails
+ */
+ public long computeChargeTimeRemaining() {
+ try {
+ return mBatteryStats.computeChargeTimeRemaining();
+ } catch (RemoteException e) {
+ throw e.rethrowFromSystemServer();
+ }
+ }
}