master
Tomasz Półgrabia 2016-10-09 12:17:05 +02:00
parent 94418fccdd
commit 84bd51cf58
1 changed files with 4 additions and 4 deletions

View File

@ -301,13 +301,13 @@ public class MainActivity extends ActionBarActivity {
lg.debug("Selected location provider {} is available", locationProvider); lg.debug("Selected location provider {} is available", locationProvider);
final Long updateTimeInMinutes = HelperUtils.fetchGpsUpdateFreq(this); final Long updateTimeInMilliseconds = HelperUtils.fetchGpsUpdateFreq(this);
lg.debug("Update time: {}", updateTimeInMinutes); lg.debug("Update time: {}", updateTimeInMilliseconds);
if (locationProvider != null) { if (locationProvider != null) {
lg.debug("Requesting location updates"); lg.debug("Requesting location updates");
LocationManager locationService = (LocationManager)getSystemService(LOCATION_SERVICE); LocationManager locationService = (LocationManager)getSystemService(LOCATION_SERVICE);
locationService.requestLocationUpdates(locationProvider, locationService.requestLocationUpdates(locationProvider,
updateTimeInMinutes, updateTimeInMilliseconds,
HelperUtils.fetchGpsDistanceFreq(this), HelperUtils.fetchGpsDistanceFreq(this),
locationCallback); locationCallback);
locationServicesActivated = true; locationServicesActivated = true;
@ -318,7 +318,7 @@ public class MainActivity extends ActionBarActivity {
lg.debug("Now: {}", now); lg.debug("Now: {}", now);
final long lastLocationUpdateTimeAgo = now - lastLocationUpdateTime; final long lastLocationUpdateTimeAgo = now - lastLocationUpdateTime;
lg.debug("Last location update was {} ms ago", lastLocationUpdateTimeAgo); lg.debug("Last location update was {} ms ago", lastLocationUpdateTimeAgo);
if (lastLocationUpdateTime < 0 || lastLocationUpdateTimeAgo >= updateTimeInMinutes*1000.0) { if (lastLocationUpdateTime < 0 || lastLocationUpdateTimeAgo >= updateTimeInMilliseconds) {
lg.info("Last location update time exceeded. Requesting single update..."); lg.info("Last location update time exceeded. Requesting single update...");
locationService.requestSingleUpdate(locationProvider, locationCallback, Looper.getMainLooper()); locationService.requestSingleUpdate(locationProvider, locationCallback, Looper.getMainLooper());
} }