Lines Matching refs:Geofence
12 <li><a href="#RequestGeofences">Request Geofence Monitoring</a></li>
13 <li><a href="#HandleGeofenceTransitions">Handle Geofence Transitions</a></li>
14 <li><a href="#StopGeofenceMonitoring">Stop Geofence Monitoring</a></li>
50 <h2 id="RequestGeofences">Request Geofence Monitoring</h2>
167 Log.d("Geofence Detection",
191 "Geofence Detection");
206 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
208 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.Builder.html">Geofence.…
210 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
234 <dt>Geofence ID</dt>
243 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
252 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
261 * A single Geofence object, defined by its center and radius.
273 * @param geofenceId The Geofence's request ID
274 * @param latitude Latitude of the Geofence's center.
275 * @param longitude Longitude of the Geofence's center.
277 * @param expiration Geofence expiration duration
278 * @param transition Type of Geofence transition.
315 * Creates a Location Services Geofence object from a
318 * @return A Geofence object
320 public Geofence toGeofence() {
321 // Build a new Geofence object
322 return new Geofence.Builder()
421 // Return a true Geofence object
442 // Write the Geofence values to SharedPreferences
476 * Given a Geofence object's ID and the name of a field
480 * @param id The ID of a Geofence object
492 <h3>Create Geofence objects</h3>
497 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
536 // Internal List of Geofence objects
537 List<Geofence> mGeofenceList;
549 mCurrentGeofences = new ArrayList<Geofence>();
569 Geofence.GEOFENCE_TRANSITION_ENTER);
580 Geofence.GEOFENCE_TRANSITION_ENTER |
581 Geofence.GEOFENCE_TRANSITION_EXIT);
592 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…
763 …Client.html#addGeofences(java.util.List<com.google.android.gms.location.Geofence>, android.app.Pen…
798 …Client.html#addGeofences(java.util.List<com.google.android.gms.location.Geofence>, android.app.Pen…
935 "Geofence Detection");
943 Handle Geofence Transitions
945 <h2 id="HandleGeofenceTransitions">Handle Geofence Transitions</h2>
997 (transitionType == Geofence.GEOFENCE_TRANSITION_ENTER)
999 (transitionType == Geofence.GEOFENCE_TRANSITION_EXIT)
1001 List <Geofence> triggerList =
1019 "Geofence transition error: " +
1048 <h2 id="StopGeofenceMonitoring">Stop Geofence Monitoring</h2>
1255 <code><a href="{@docRoot}reference/com/google/android/gms/location/Geofence.html">Geofence</a></cod…