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

I've tried getTime() method from Location class to get the time when the fix is obtained. But it does not give the time from location-provider moreover this time can be modified by setTime() method from same class. Can we get time from location-providers (irrespective of timezones) which is more accurate and robust ?

share|improve this question
"But it does not give the time from location-provider" What does it give you? "moreover this time can be modified by setTime() method from same class." Every field in Location has a set method, including latitude and longitude... – Sam Dec 3 '12 at 22:22
Thanks for your reply Sam. I am looking for a timestamp from location-provider, the same time when location details were sent which cannot be modified the user. any info on that ? – nani Dec 3 '12 at 22:32
do we've any other source for time at all ?? – nani Dec 3 '12 at 22:44
You can always create your own timestamp, long time = System.currentTimeMillis(). onLocationChanged() is typically called within a few milliseconds of when the Location object is created, if you create your own timestamp here it will be roughly as accurate as getTime(). – Sam Dec 3 '12 at 22:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.