Android how to get gps location
- by Faisal khan
I want to detect location from gps listener and also from network
my code is as follows
For network location listen
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,
WLConstants.DELAY_HOUR, 500.0f,
nsl); // where nsl is listener implements LocationListener
and for…