Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it necessary for gps to be enabled while getting location updates through Network_provider like:

locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,0,0,listener);

while GPS of android device is disabled . . . ? ? ?

share|improve this question
Your accept rate is very low. Please accept some answers from your previous questions. See How does accepting answers work? – user658042 Sep 13 '11 at 13:04

1 Answer

up vote 1 down vote accepted

no , you just have to be connected through wi-fi or any network means. you have separate provider string for GPS e.g locationMangaer.requestLocationUpdates(LocationManager.GPS_PROVIDER, MINIMUM_TIME, MIN_DISTANCE, listener);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.