Search code examples
androidlocationlistener

How to listen for location updates from multiple providers?


In this code I request location updates from GPS

locMan.requestLocationUpdates(LocationManager.GPS_PROVIDER,20000, 1, gpsListener);

But how can I make sure it listens for Wifi or Cell ID updates too?


Solution

  • You should be able to call requestLocationUpdates(), with distinct LocationListener objects, for the other providers.