com.google.android.gms.location.ActivityRecognitionApi |
The main entry point for interacting with activity recognition.
The methods must be used in conjunction with a GoogleApiClient
. E.g.
new GoogleApiClient.Builder(context)
.addApi(ActivityRecognitionServices.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build()
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Removes all activity updates for the specified PendingIntent.
| |||||||||||
Register for activity recognition updates.
|
Removes all activity updates for the specified PendingIntent.
Calling this function requires the com.google.android.gms.permission.ACTIVITY_RECOGNITION permission.
client | An existing GoogleApiClient. It must be connected at the
time of this call, which is normally achieved by calling
connect() and waiting for
onConnected(Bundle) to
be called. |
---|---|
callbackIntent | pending intent object that no longer needs activity detection updates |
isSuccess()
to
determine if it was successful.
Register for activity recognition updates.
The activities are detected by periodically waking up the device and
reading short bursts of sensor data. It only makes use of low power
sensors in order to keep the power usage to a minimum. For example, it
can detect if the user is currently on foot, in a car, on a bicycle or
still. See DetectedActivity
for more details.
The activity detection update interval can be controlled with the detectionIntervalMillis parameter. Larger values will result in fewer activity detections while improving battery life. Smaller values will result in more frequent activity detections but will consume more power since the device must be woken up more frequently.
Activities may be received more frequently than the detectionIntervalMillis parameter if another application has also requested activity updates at a faster rate. It may also receive updates faster when the activity detection service receives a signal that the current activity may change, such as if the device has been still for a long period of time and is then unplugged from a phone charger.
Activities may arrive several seconds after the requested detectionIntervalMillis if the activity detection service requires more samples to make a more accurate prediction.
To conserve battery, activity reporting may stop when the device is 'STILL' for an extended period of time. It will resume once the device moves again. This only happens on devices that support the Sensor.TYPE_SIGNIFICANT_MOTION hardware.
A common use case is that an application wants to monitor activities in
the background and perform an action when a specific activity is
detected. To do this without needing a service that is always on in the
background consuming resources, detected activities are delivered via an
intent. The application specifies a PendingIntent callback (typically an
IntentService) which will be called when activities are detected. See the
documentation of PendingIntent
for more details.
Applications can call this function several times in a row with the same callbackIntent to change the desired activity detection interval.
Calling this function requires the com.google.android.gms.permission.ACTIVITY_RECOGNITION permission.
client | An existing GoogleApiClient. It must be connected at the
time of this call, which is normally achieved by calling
connect() and waiting for
onConnected(Bundle) to
be called. |
---|---|
detectionIntervalMillis | the desired time between activity detections. Larger values will result in fewer activity detections while improving battery life. A value of 0 will result in activity detections at the fastest possible rate. |
callbackIntent | a PendingIntent to be sent for each activity detection. |
isSuccess()
to
determine if it was successful.