How to get TimeZone from android mobile?

Have you tried to use TimeZone.getDefault():

Most applications will use TimeZone.getDefault() which returns a TimeZone based
on the time zone where the program is running.

Ref: http://developer.android.com/reference/java/util/TimeZone.html

Leave a Comment