开发者

update interval in requestLocationUpdates

开发者 https://www.devze.com 2023-03-13 00:40 出处:网络
How can I update time and distance intervals, or call requestLocationUpdates again with different intervals?

How can I update time and distance intervals, or call requestLocationUpdates again with different intervals?

My code:

开发者_StackOverflow
LocationManager locationManager = (LocationManager) activityObject.getSystemService(Context.LOCATION_SERVICE);

    cll = new CheckinLocationListener();

    LocationProvider gps = locationManager.getProvider(LocationManager.GPS_PROVIDER);

    // GPS

    locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, timeDelay, distanceDelay, cll);

    Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

onLocationChanged:

if(location.getSpeed()>=0 && location.getSpeed()<= 3)
            {
                LocationsModel.this.distanceDelay = 25;
                LocationsModel.this.timeDelay = 10000;
            }
            else if(location.getSpeed()>=3 && location.getSpeed()<= 17)
            {
                LocationsModel.this.distanceDelay = 150;
                LocationsModel.this.timeDelay = 60000;
            }
            else if(location.getSpeed()>=17)
            {
                LocationsModel.this.distanceDelay = 300;
                LocationsModel.this.timeDelay = 240000;
            }

I would like to use the new intervals at the next measure.


You'll need to first call locationManager.removeUpdates( cll ); and then re-register for updates using your new interval.

0

精彩评论

暂无评论...
验证码 换一张
取 消