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 ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
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 asgetTime(). – Sam Dec 3 '12 at 22:51