Quoting the documentation for requestLocationUpdates(): "Prior to Jellybean, the minTime parameter was only a hint, and some location provider implementations ignored it. From Jellybean and onwards it is mandatory for Android compatible devices to observe both the minTime and minDistance parameters."
On Sun, Jan 20, 2013 at 12:28 PM, [email protected] <[email protected]> wrote: > in the onCreate event for my Service I setup locationlistener... > > locMgr = (LocationManager)getSystemService(Context.LOCATION_SERVICE); > locLstnr = new MyLocationListener(); > debugLog("Instantiated new Location listener", false); > locMgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, 10, > locLstnr); > > The 10000 is supposed to mean that I want the event to go off approx every > 10 seconds. My class statement is . . . > > public class MyLocationListener implements LocationListener > { > GeoPoint LastGeoPoint; > . .. . . > > But the onLocationChanged event is going off approx twice per second. Why? > Thanks, Gary > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

