DetectedActivity Stay organized with collections Save and categorize content based on your preferences.
Page Summary
DetectedActivity provides information about the device's activity and the confidence level of that detection.
This class includes constants for various detected activity types such as IN_VEHICLE, ON_BICYCLE, ON_FOOT, RUNNING, STILL, TILTING, UNKNOWN, and WALKING.
You can get the detected activity type and its confidence level using the
getType()andgetConfidence()methods, respectively.Confidence values range from 0 to 100, with higher values indicating greater likelihood of the detected activity.
The detected activity of the device with an an associated confidence. SeeActivityRecognitionApi for details on how to obtain aDetectedActivity.
Constant Summary
| int | IN_VEHICLE | The device is in a vehicle, such as a car. |
| int | ON_BICYCLE | The device is on a bicycle. |
| int | ON_FOOT | The device is on a user who is walking or running. |
| int | RUNNING | The device is on a user who is running. |
| int | STILL | The device is still (not moving). |
| int | TILTING | The device angle relative to gravity changed significantly. |
| int | UNKNOWN | Unable to detect the current activity. |
| int | WALKING | The device is on a user who is walking. |
Inherited Constant Summary
| int | CONTENTS_FILE_DESCRIPTOR | |
| int | PARCELABLE_WRITE_RETURN_VALUE |
Field Summary
| public static finalCreator<DetectedActivity> | CREATOR |
Public Constructor Summary
DetectedActivity(int activityType, int confidence) Constructs a DetectedActivity. |
Public Method Summary
| int | getConfidence() Returns a value from 0 to 100 indicating the likelihood that the user is performing this activity. |
| int | getType() Returns the type of activity that was detected. |
| String | toString() |
| void | writeToParcel(Parcel out, int flags) |
Inherited Method Summary
| abstract int | describeContents() |
| abstract void | writeToParcel(Parcel arg0, int arg1) |
Constants
public static final intIN_VEHICLE
The device is in a vehicle, such as a car.
public static final intON_BICYCLE
The device is on a bicycle.
public static final intON_FOOT
The device is on a user who is walking or running.
public static final intRUNNING
The device is on a user who is running. This is a sub-activity of ON_FOOT.
public static final intSTILL
The device is still (not moving).
public static final intTILTING
The device angle relative to gravity changed significantly. This often occurs when a device is picked up from a desk or a user who is sitting stands up.
public static final intUNKNOWN
Unable to detect the current activity.
public static final intWALKING
The device is on a user who is walking. This is a sub-activity of ON_FOOT.
Fields
public static finalCreator<DetectedActivity>CREATOR
Public Constructors
publicDetectedActivity(int activityType, int confidence)
Constructs a DetectedActivity.
Parameters
| activityType | the activity that was detected. |
|---|---|
| confidence | value from 0 to 100 indicating how likely it is that the user is performing this activity. |
Public Methods
public intgetConfidence()
Returns a value from 0 to 100 indicating the likelihood that the user is performing this activity.
The larger the value, the more consistent the data used to perform the classification is with the detected activity.
This value will be <= 100. It means that larger values indicate that it's likely that the detected activity is correct, while a value of <= 50 indicates that there may be another activity that is just as or more likely.
Multiple activities may have high confidence values. For example, the ON_FOOT may have a confidence of 100 while the RUNNING activity may have a confidence of 95. The sum of the confidences of all detected activities for a classification does not have to be <= 100 since some activities are not mutually exclusive (for example, you can be walking while in a bus) and some activities are hierarchical (ON_FOOT is a generalization of WALKING and RUNNING).
public intgetType()
Returns the type of activity that was detected.
publicStringtoString()
public voidwriteToParcel(Parcel out, int flags)
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.