All pastes #2063219 Raw Edit

Mine

public text v1 · immutable
#2063219 ·published 2011-05-18 09:33 UTC
rendered paste body
		// 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);
		}