<Displaying date/time in devices timezone on Andro...
# stackoverflow
u
Displaying date/time in devices timezone on Android using Kotlin So my app fetches from information from a JSON file from a server, of which there are a few date/time values. The time and date are in UTC. I need to display these in my app, in the users local timezone. Example of the data from JSON: "start":"2018-10-20 030000","finish":"2018-10-20 050000" My code so far, which display the date and time fine, in UTC.. val dateStringStart = radioScheduleDMList.get(position).start val dateStringEnd = radioScheduleDMList.get(position).finish...