How to check if location which I got with GPS_PROVIDER or NETWORK_PROVIDER younger than 60 seconds ? I know to get location.getTime() in ms but I cannot compare that with System.currentTimeMillis() because different timezones. Is there any way to do this ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
How to check if location which I got with GPS_PROVIDER or NETWORK_PROVIDER younger than 60 seconds ?
|
|
I've implemented this and my approach was to copy the i know it's been a while this question is posted but, hoping it might help someone searching for it. |
||||
|
|
|
The Location class has include the method getTime(), you can get this value and compare whether it is younger than 60s. I think it will work for you. |
|||
|
|