Stay organized with collections
Save and categorize content based on your preferences.
PowerMonitorReadings
class PowerMonitorReadings
A collection of energy measurements from Power Monitors.
Summary
Public methods |
Long |
Returns energy consumed by the specified power monitor since boot in microwatt-seconds.
|
Long |
Elapsed realtime, in milliseconds, when the snapshot was taken.
|
String |
|
Constants
ENERGY_UNAVAILABLE
static val ENERGY_UNAVAILABLE: Int
Value: -1
Public methods
getConsumedEnergy
fun getConsumedEnergy(powerMonitor: PowerMonitor): Long
Returns energy consumed by the specified power monitor since boot in microwatt-seconds. Does not persist across reboots. Represents total energy: both on-battery and plugged-in.
Parameters |
powerMonitor |
PowerMonitor: This value cannot be null . |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# PowerMonitorReadings\n\nAdded in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nPowerMonitorReadings\n====================\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/os/PowerMonitorReadings \"View this page in Java\") \n\n```\nclass PowerMonitorReadings\n```\n\n|---|--------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [android.os.PowerMonitorReadings](#) |\n\nA collection of energy measurements from Power Monitors.\n\nSummary\n-------\n\n| Constants ||\n|-----------------------------------------------------------------------------------|-------------------------------------------------------------|\n| static [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | [ENERGY_UNAVAILABLE](#ENERGY_UNAVAILABLE:kotlin.Int) \u003cbr /\u003e |\n\n| Public methods ||\n|----------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | [getConsumedEnergy](#getConsumedEnergy(android.os.PowerMonitor))`(`powerMonitor:` `[PowerMonitor](/reference/kotlin/android/os/PowerMonitor)`)` Returns energy consumed by the specified power monitor since boot in microwatt-seconds. |\n| [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | [getTimestampMillis](#getTimestampMillis(android.os.PowerMonitor))`(`powerMonitor:` `[PowerMonitor](/reference/kotlin/android/os/PowerMonitor)`)` Elapsed realtime, in milliseconds, when the snapshot was taken. |\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | [toString](#toString())`()` \u003cbr /\u003e |\n\nConstants\n---------\n\n### ENERGY_UNAVAILABLE\n\nAdded in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nstatic val ENERGY_UNAVAILABLE: Int\n``` \n\n Value: -1\n\nPublic methods\n--------------\n\n### getConsumedEnergy\n\nAdded in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun getConsumedEnergy(powerMonitor: PowerMonitor): Long\n```\n\nReturns energy consumed by the specified power monitor since boot in microwatt-seconds. Does not persist across reboots. Represents total energy: both on-battery and plugged-in.\n\n| Parameters ||\n|----------------|-----------------------------------------------------------------------------------------|\n| `powerMonitor` | [PowerMonitor](/reference/kotlin/android/os/PowerMonitor): This value cannot be `null`. |\n\n### getTimestampMillis\n\nAdded in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun getTimestampMillis(powerMonitor: PowerMonitor): Long\n```\n\nElapsed realtime, in milliseconds, when the snapshot was taken. \nValue is a non-negative timestamp in the [android.os.SystemClock#elapsedRealtime()](/reference/kotlin/android/os/SystemClock#elapsedRealtime()) time base.\n\n| Parameters ||\n|----------------|-----------------------------------------------------------------------------------------|\n| `powerMonitor` | [PowerMonitor](/reference/kotlin/android/os/PowerMonitor): This value cannot be `null`. |\n\n| Return ||\n|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | Value is a non-negative timestamp in the [android.os.SystemClock#elapsedRealtime()](/reference/kotlin/android/os/SystemClock#elapsedRealtime()) time base. |\n\n### toString\n\nAdded in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun toString(): String\n```\n\n| Return ||\n|----------------------------------------------------------------------------------|----------------------------------------|\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | a string representation of the object. |"]]