Is there a way to get battery information from the Android SDK? Such as battery life remaining and so on? I cannot find it through the docs.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can register an Intent receiver to receive the broadcast for ACTION_BATTERY_CHANGED: http://developer.android.com/reference/android/content/Intent.html#ACTION_BATTERY_CHANGED. The docs say that the broadcast is sticky, so you'll be able to grab it even after the moment the battery state change occurs. |
|||||||||
|
|
Here is a quick example that will get you the amount of battery used, the battery voltage, and its temperature. Paste the following code into an activity:
On my phone, this has the following output every 10 seconds:
So this means that the battery is 40% full, has a temperature of 32.0 degrees celsius, and has voltage of 3.848 Volts. |
|||||||||||||
|
