In my Android app, I need to get TimeZone using latitude and longitude. I need to get TimeZone
without using internet.
How could I achieve this? Is there any logic to get TimeZone using latitude and longitude?
In my Android app, I need to get TimeZone using latitude and longitude. I need to get TimeZone
without using internet.
How could I achieve this? Is there any logic to get TimeZone using latitude and longitude?
Since you state "without using the internet" the only option would be to have a local look-up table based on the lat/long with a resulting timezone "value". The table could be stored in a SQLlite table, populated with data that you obtain via webservices prior to loading onto the device.