1

i would like to be notified when the user is near a certain GPS position with a specific intent filter: do you know if it is possible in an Android app?

oezi
  • 51,017
  • 10
  • 98
  • 115
Cris
  • 12,124
  • 27
  • 92
  • 159

1 Answers1

2

If I understand you correctly you should look at LocationManager.addProximityAlert(double latitude, double longitude, float radius, long expiration, PendingIntent intent). When you are within proximity of the GPS coords the PendingIntent will be fired off.

techi.services
  • 8,473
  • 4
  • 39
  • 42