I'm having a problem getting the user's location on one of my tester's phones. It always works fine for me so I don't know what the difference is.
Here is the sequence:
1: Reboots his phone. 2. Checks to make sure location services are enabled (for both GPS and Network). 3. Starts my app.
The OS never provides a valid location. The getLastKnownLocation() always returns null for both GPS_PROVIDER and NETWORK_PROVIDER and the LocationListener is never called after requestingLocatioUpdates.
- He then runs the Google Maps app (which does seem to locate him).
- Then if he runs my app again and it does get the location correctly.
Here are the basics of my code:
LocationManager locationManager = (LocationManager) this.getSystemService( Context.LOCATION_SERVICE );
LocationListener locationListener = new LocationListener()
{
public void onLocationChanged( Location location )
{
useLocation( location );
}
public void onStatusChanged( String provider, int status, Bundle extras )
{
}
public void onProviderEnabled( String provider )
{
}
public void onProviderDisabled( String provider )
{
}
};
// Register the listener with the Location Manager to receive location updates
// Checks a minimum of every 120 seconds. Location must change by 10000 meters
String provider = locationManager.getBestProvider( new Criteria(), true );
if ( provider != null )
{
System.out.println( "Using provider: " + provider );
locationManager.requestLocationUpdates( provider, 120 * 1000, 10000, locationListener );
}
// Get the last know location for immediate use
Location lastLocation = locationManager.getLastKnownLocation( LocationManager.GPS_PROVIDER );
if ( lastLocation != null )
useLocation( lastLocation );
else
useLocation( locationManager.getLastKnownLocation( LocationManager.NETWORK_PROVIDER ) );
When it fails, the code says the best provider is "network" so that is what I use. But the onLocationChanged is never called. I also never get a non-null value from the getLastKnowLocation().
Is there some further magic I need to do to get this to work consistently after a reboot?