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?
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?
You should be able to call requestLocationUpdates()
, with distinct LocationListener
objects, for the other providers.