Mine
public text v1 · immutable // Register the listener with the Location Manager to receive location updates
List<String> providers = locationManager.getProviders(false);
Iterator<String> it = providers.iterator();
while( it.hasNext() )
{
String p = it.next();
locationManager.requestLocationUpdates(p, 10000, 10, locationListener);
}