NetworkStatsManager
open class NetworkStatsManager
kotlin.Any | |
↳ | android.app.usage.NetworkStatsManager |
Provides access to network usage history and statistics. Usage data is collected in discrete bins of time called 'Buckets'. See NetworkStats.Bucket
for details.
Summary queries
querySummaryForDevice
querySummaryForUser
querySummary
These queries aggregate network usage across the whole interval. Therefore there will be only one bucket for a particular key, state, metered and roaming combination. In case of the user-wide and device-wide summaries a single bucket containing the totalised network usage is returned.
History queries
queryDetailsForUid
queryDetails
These queries do not aggregate over time but do aggregate over state, metered and roaming. Therefore there can be multiple buckets for a particular key. However, all Buckets will have state
NetworkStats.Bucket#STATE_ALL
, defaultNetwork
NetworkStats.Bucket#DEFAULT_NETWORK_ALL
, metered
NetworkStats.Bucket#METERED_ALL
, roaming
NetworkStats.Bucket#ROAMING_ALL
.
NOTE: Calling querySummaryForDevice
or accessing stats for apps other than the calling app requires the permission android.Manifest.permission#PACKAGE_USAGE_STATS
, which is a system-level permission and will not be granted to third-party apps. However, declaring the permission implies intention to use the API and the user of the device can grant permission through the Settings application.
Profile owner apps are automatically granted permission to query data on the profile they manage (that is, for any query except querySummaryForDevice
). Device owner apps and carrier- privileged apps likewise get access to usage data for all users on the device.
In addition to tethering usage, usage by removed users and apps, and usage by the system is also included in the results for callers with one of these higher levels of access.
NOTE: Prior to API level {@value android.os.Build.VERSION_CODES#N}, all calls to these APIs required the above permission, even to access an app's own data usage, and carrier-privileged apps were not included.
Summary
Nested classes | |
---|---|
abstract |
Base class for usage callbacks. |
Public methods | |
---|---|
open NetworkStats! |
queryDetails(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long) Query network usage statistics details. |
open NetworkStats |
queryDetailsForUid(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long, uid: Int) Query network usage statistics details for a given uid. |
open NetworkStats |
queryDetailsForUidTag(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long, uid: Int, tag: Int) Query network usage statistics details for a given uid and tag. |
open NetworkStats |
queryDetailsForUidTagState(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long, uid: Int, tag: Int, state: Int) Query network usage statistics details for a given uid, tag, and state. |
open NetworkStats! |
querySummary(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long) Query network usage statistics summaries. |
open NetworkStats.Bucket! |
querySummaryForDevice(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long) Query network usage statistics summaries. |
open NetworkStats.Bucket! |
querySummaryForUser(networkType: Int, subscriberId: String?, startTime: Long, endTime: Long) Query network usage statistics summaries. |
open Unit |
registerUsageCallback(networkType: Int, subscriberId: String?, thresholdBytes: Long, callback: NetworkStatsManager.UsageCallback) Registers to receive notifications about data usage on specified networks. |
open Unit |
registerUsageCallback(networkType: Int, subscriberId: String?, thresholdBytes: Long, callback: NetworkStatsManager.UsageCallback, handler: Handler?) Registers to receive notifications about data usage on specified networks. |
open Unit |
Unregisters callbacks on data usage. |
Public methods
queryDetails
open fun queryDetails(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long
): NetworkStats!
Query network usage statistics details. Result filtered to include only uids belonging to calling user. Result is aggregated over state but not aggregated over time, uid, tag, metered, nor roaming. This means buckets' start and end timestamps are going to be between 'startTime' and 'endTime' parameters. State is going to be NetworkStats.Bucket#STATE_ALL
, uid will vary, tag NetworkStats.Bucket#TAG_NONE
, default network is going to be NetworkStats.Bucket#DEFAULT_NETWORK_ALL
, metered is going to be NetworkStats.Bucket#METERED_ALL
, and roaming is going to be NetworkStats.Bucket#ROAMING_ALL
.
Only includes buckets that atomically occur in the inclusive time range. Doesn't interpolate across partial buckets. Since bucket length is in the order of hours, this method cannot be used to measure data usage on a fine grained time scale. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
Return | |
---|---|
NetworkStats! |
Statistics object or null if permissions are insufficient or error happened during statistics collection. |
queryDetailsForUid
open fun queryDetailsForUid(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long,
uid: Int
): NetworkStats
Query network usage statistics details for a given uid. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
uid |
Int: UID of app |
Return | |
---|---|
NetworkStats |
Statistics which is described above. This value cannot be null . |
Exceptions | |
---|---|
java.lang.SecurityException |
if permissions are insufficient to read network statistics. |
queryDetailsForUidTag
open fun queryDetailsForUidTag(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long,
uid: Int,
tag: Int
): NetworkStats
Query network usage statistics details for a given uid and tag. This may take a long time, and apps should avoid calling this on their main thread. Only usable for uids belonging to calling user. Result is not aggregated over time. This means buckets' start and end timestamps are going to be between 'startTime' and 'endTime' parameters. The uid is going to be the same as the 'uid' parameter, the tag the same as the 'tag' parameter, and the state the same as the 'state' parameter. defaultNetwork is going to be NetworkStats.Bucket#DEFAULT_NETWORK_ALL
, metered is going to be NetworkStats.Bucket#METERED_ALL
, and roaming is going to be NetworkStats.Bucket#ROAMING_ALL
.
Only includes buckets that atomically occur in the inclusive time range. Doesn't interpolate across partial buckets. Since bucket length is in the order of hours, this method cannot be used to measure data usage on a fine grained time scale. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
uid |
Int: UID of app |
tag |
Int: TAG of interest. Use NetworkStats.Bucket#TAG_NONE for aggregated data across all the tags. |
Return | |
---|---|
NetworkStats |
Statistics which is described above. This value cannot be null . |
Exceptions | |
---|---|
java.lang.SecurityException |
if permissions are insufficient to read network statistics. |
queryDetailsForUidTagState
open fun queryDetailsForUidTagState(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long,
uid: Int,
tag: Int,
state: Int
): NetworkStats
Query network usage statistics details for a given uid, tag, and state. Only usable for uids belonging to calling user. Result is not aggregated over time. This means buckets' start and end timestamps are going to be between 'startTime' and 'endTime' parameters. The uid is going to be the same as the 'uid' parameter, the tag the same as the 'tag' parameter, and the state the same as the 'state' parameter. defaultNetwork is going to be NetworkStats.Bucket#DEFAULT_NETWORK_ALL
, metered is going to be NetworkStats.Bucket#METERED_ALL
, and roaming is going to be NetworkStats.Bucket#ROAMING_ALL
.
Only includes buckets that atomically occur in the inclusive time range. Doesn't interpolate across partial buckets. Since bucket length is in the order of hours, this method cannot be used to measure data usage on a fine grained time scale. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
uid |
Int: UID of app |
tag |
Int: TAG of interest. Use NetworkStats.Bucket#TAG_NONE for aggregated data across all the tags. |
state |
Int: state of interest. Use NetworkStats.Bucket#STATE_ALL to aggregate traffic from all states. |
Return | |
---|---|
NetworkStats |
Statistics which is described above. This value cannot be null . |
Exceptions | |
---|---|
java.lang.SecurityException |
if permissions are insufficient to read network statistics. |
querySummary
open fun querySummary(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long
): NetworkStats!
Query network usage statistics summaries. Result filtered to include only uids belonging to calling user. Result is aggregated over time, hence all buckets will have the same start and end timestamps. Not aggregated over state, uid, default network, metered, or roaming. This means buckets' start and end timestamps are going to be the same as the 'startTime' and 'endTime' parameters. State, uid, metered, and roaming are going to vary, and tag is going to be the same. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
Return | |
---|---|
NetworkStats! |
Statistics object or null if permissions are insufficient or error happened during statistics collection. |
querySummaryForDevice
open fun querySummaryForDevice(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long
): NetworkStats.Bucket!
Query network usage statistics summaries. Result is summarised data usage for the whole device. Result is a single Bucket aggregated over time, state, uid, tag, metered, and roaming. This means the bucket's start and end timestamp are going to be the same as the 'startTime' and 'endTime' parameters. State is going to be NetworkStats.Bucket#STATE_ALL
, uid NetworkStats.Bucket#UID_ALL
, tag NetworkStats.Bucket#TAG_NONE
, default network NetworkStats.Bucket#DEFAULT_NETWORK_ALL
, metered NetworkStats.Bucket#METERED_ALL
, and roaming NetworkStats.Bucket#ROAMING_ALL
. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
Return | |
---|---|
NetworkStats.Bucket! |
Bucket object or null if permissions are insufficient or error happened during statistics collection. |
querySummaryForUser
open fun querySummaryForUser(
networkType: Int,
subscriberId: String?,
startTime: Long,
endTime: Long
): NetworkStats.Bucket!
Query network usage statistics summaries. Result is summarised data usage for all uids belonging to calling user. Result is a single Bucket aggregated over time, state and uid. This means the bucket's start and end timestamp are going to be the same as the 'startTime' and 'endTime' parameters. State is going to be NetworkStats.Bucket#STATE_ALL
, uid NetworkStats.Bucket#UID_ALL
, tag NetworkStats.Bucket#TAG_NONE
, metered NetworkStats.Bucket#METERED_ALL
, and roaming NetworkStats.Bucket#ROAMING_ALL
. This may take a long time, and apps should avoid calling this on their main thread.
This method may take several seconds to complete, so it should only be called from a worker thread.
Parameters | |
---|---|
networkType |
Int: As defined in ConnectivityManager , e.g. ConnectivityManager#TYPE_MOBILE , ConnectivityManager#TYPE_WIFI etc. |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
startTime |
Long: Start of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
endTime |
Long: End of period. Defined in terms of "Unix time", see java.lang.System#currentTimeMillis . |
Return | |
---|---|
NetworkStats.Bucket! |
Bucket object or null if permissions are insufficient or error happened during statistics collection. |
registerUsageCallback
open fun registerUsageCallback(
networkType: Int,
subscriberId: String?,
thresholdBytes: Long,
callback: NetworkStatsManager.UsageCallback
): Unit
Registers to receive notifications about data usage on specified networks.
The callbacks will continue to be called as long as the process is live or unregisterUsageCallback
is called.
Parameters | |
---|---|
networkType |
Int: Type of network to monitor. Either ConnectivityManager#TYPE_MOBILE or ConnectivityManager#TYPE_WIFI . |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
thresholdBytes |
Long: Threshold in bytes to be notified on. |
callback |
NetworkStatsManager.UsageCallback: The UsageCallback that the system will call when data usage has exceeded the specified threshold. This value cannot be null . |
registerUsageCallback
open fun registerUsageCallback(
networkType: Int,
subscriberId: String?,
thresholdBytes: Long,
callback: NetworkStatsManager.UsageCallback,
handler: Handler?
): Unit
Registers to receive notifications about data usage on specified networks.
The callbacks will continue to be called as long as the process is live or unregisterUsageCallback
is called.
Parameters | |
---|---|
networkType |
Int: Type of network to monitor. Either ConnectivityManager#TYPE_MOBILE or ConnectivityManager#TYPE_WIFI . |
subscriberId |
String?: If applicable, the subscriber id of the network interface.
Starting with API level 29, the Starting with API level 31, calling apps can provide a |
thresholdBytes |
Long: Threshold in bytes to be notified on. |
callback |
NetworkStatsManager.UsageCallback: The UsageCallback that the system will call when data usage has exceeded the specified threshold. This value cannot be null . |
handler |
Handler?: to dispatch callback events through, otherwise if null it uses the calling thread. |
unregisterUsageCallback
open fun unregisterUsageCallback(callback: NetworkStatsManager.UsageCallback): Unit
Unregisters callbacks on data usage.
Parameters | |
---|---|
callback |
NetworkStatsManager.UsageCallback: The UsageCallback used when registering. This value cannot be null . |