I am successfully acquiring the GPS location in BlackBerry. The aim is to acquire the location at continuous intervals. The interval value depends on the slider setting in the app. I am able to do that and it is working fine. However, I have an issue. If the interval value is set to, for instance 60 seconds, I want the app to acquire the FIRST location on load (when app opens) and the next GPS refresh should be based on the interval. I have been unable to get this done. My app gives me the FIRST location on the interval value; if it is set to 2minutes, GPS location will be acquired after two minutes and not on load. Please help.
I call startLocationUpdate() in the constructor to get the location.
private boolean startLocationUpdate()
{
boolean retval = false;
try
{
LocationProvider locationProvider = LocationProvider.getInstance(null);
if ( locationProvider == null )
{
Runnable showGpsUnsupportedDialog = new Runnable()
{
public void run()
{
Dialog.alert("GPS is not supported on this platform, exiting...");
//System.exit( 1 );
}
};
UiApplication.getUiApplication().invokeAndWait( showGpsUnsupportedDialog ); // Ask event-dispatcher thread to display dialog ASAP.
}
else
{
locationProvider.setLocationListener(new LocationListenerImpl(), interval, -1, -1);
retval = true;
}
}
catch (LocationException le)
{
System.err.println("Failed to instantiate the LocationProvider object, exiting...");
System.err.println(le);
System.exit(0);
}
return retval;
}
private class LocationListenerImpl implements LocationListener
{
public void locationUpdated(LocationProvider provider, Location location)
{
if(location.isValid())
{
double longitude = location.getQualifiedCoordinates().getLongitude();
double latitude = location.getQualifiedCoordinates().getLatitude();
double velocity = location.getSpeed();
double heading = location.getCourse();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = simpleDateFormat.format(new Date(location.getTimestamp()));
Date d=new Date(location.getTimestamp());
updateLocationScreen(latitude, longitude, velocity, heading, d);
}
}
public void providerStateChanged(LocationProvider provider, int newState)
{
}
}
private void updateLocationScreen(final double latitude, final double longitude, final double
velo, final double heading, final Date time)
{
UiApplication.getUiApplication().invokeAndWait(new Runnable()
{
public void run()
{
double lat = latitude;
double longi = longitude;
lblLatitude.setText(Double.toString(lat));
spacing.setText(", ");
lblLongitude.setText(Double.toString(longi));
}
});
}
EDIT: I understand that it cannot be ensured to get the location on start-up. However, I am working on the simulator at the moment (ideal conditions) and it does give the location on startup. Let me re-phrase my question; I want the first location to be acquired ASAP (whenever the fix is made) and the consecutive locations acquired after the set interval. I have set the interval to 2mins and location is acquired at these intervals - First location after 2mins and so on. On the device, the location instance will start only after 2mins and provide the first location at 2 mins and x seconds. I want the provider to start locating a fix before the interval value.
LocationProvider.getLastKnownLocation()but the returned location can be null or be out of date. – Mister Smith Jan 21 at 14:31