views:

45

answers:

1

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?

+2  A: 

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

CommonsWare
Thanks. There is a solution linked here: http://stackoverflow.com/questions/1801866/problem-while-implement-location-listener-in-android-appwidget
Pentium10