java.lang.Object | ||
↳ | com.google.android.gms.common.api.Response<com.google.android.gms.fitness.result.DataReadResult> | |
↳ | com.google.android.gms.fitness.result.DataReadResponse |
Result of readData(com.google.android.gms.fitness.request.DataReadRequest)
.
Contains exactly one data set for each detailed data source requested in the DataReadRequest
.
The methods getDataSet(DataType)
and getDataSet(DataSource)
can be used to
fetch the resulting detailed data for a specific data source.
If aggregate data was requested, then the result will return buckets created as per the bucketing strategy specified in the request. Each bucket will have one data set per aggregate data requested.
The method getBuckets()
can be used to retrieve the buckets.
The method getStatus()
can be be used to confirm if the request was successful.
In case the calling app is missing the required permissions, the returned status has status
code set to NEEDS_OAUTH_PERMISSIONS
. In
this case the caller should use startResolutionForResult(Activity, int)
to start
an intent to get the necessary consent from the user before retrying the request.
In case the app attempts to read custom data created by another app, the returned status has
status code set to INCONSISTENT_DATA_TYPE
.
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns all of the
Buckets with aggregated data. | |||||||||||
Returns the resulting data set for the given
dataType . | |||||||||||
Returns the resulting data set for the given
dataSource . | |||||||||||
Returns all of the data sets in the result.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Returns all of the Buckets
with aggregated data. In each bucket, there will be
exactly one data set for each aggregated data source requested in the DataReadRequest
.
Buckets only contain aggregated data requested via aggregate(DataSource, DataType)
. Non-aggregated data can be accessed via getDataSet(DataType)
.
Returns | |
---|---|
List<Bucket> |
an empty list if the read request failed. |
Returns the resulting data set for the given dataType
. If more than one data source for
the given data type was requested, this method will return the data for an arbitrary one. Use
getDataSet(DataSource)
to read each specific data source.
This method returns only non-aggregated data sets that were queried via read(DataType)
or read(DataSource)
. Aggregated
data can be queried via getBuckets()
.
Parameters | |
---|---|
dataType |
DataType |
Returns | |
---|---|
DataSet |
a data set for the given data type, empty if no data was found. |
Returns the resulting data set for the given dataSource
.
This method returns only non-aggregated data sets that were queried via read(DataSource)
. Aggregated
data can be queried via getBuckets()
.
Parameters | |
---|---|
dataSource |
DataSource |
Returns | |
---|---|
DataSet |
a data set for the given data source, empty if no data was found. |
Returns all of the data sets in the result. There will be exactly one data set for each data
source requested in the DataReadRequest
.
This method returns only non-aggregated data sets that were queried via read(DataType)
or read(DataSource)
. Aggregated
data can be queried via getBuckets()
.
Returns | |
---|---|
List<DataSet> |