Question

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?

Was it helpful?

Solution

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

OTHER TIPS

Actually, you can share the same listener. Just user Location.getProvider() in the listener to find out which provider generated the update.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top