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?
Asked
Active
Viewed 1,137 times
1
-
These may help you.. http://stackoverflow.com/questions/5240246/broadcastreceiver-for-location – Shalini Jun 04 '12 at 09:51
1 Answers
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