java.lang.Object | |
↳ | com.google.android.gms.fitness.result.DataTypeResult |
Result of
readDataType(GoogleApiClient, String)
.
The method getStatus()
can be be used to confirm if the request was successful. On
success, the returned data type can be accessed via getDataType()
.
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 a custom data type created by other app,
the returned status has status code set to INCONSISTENT_DATA_TYPE
.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the new custom data type inserted.
| |||||||||||
Returns the status of this result.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns the status of this result. Use isSuccess()
to determine whether the
call was successful, and getStatusCode()
to determine what the error cause
was.
Certain errors are due to failures that can be resolved by launching a particular intent.
The resolution intent is available via getResolution()
.