How to get the timezone offset in GMT(Like GMT+7:00) from android device?

The Solution to How to get the timezone offset in GMT(Like GMT+7:00) from android device? is


This might give you an idea on how to implement it to your liking:

Calendar mCalendar = new GregorianCalendar();  
TimeZone mTimeZone = mCalendar.getTimeZone();  
int mGMTOffset = mTimeZone.getRawOffset();  
System.out.printf("GMT offset is %s hours", TimeUnit.HOURS.convert(mGMTOffset, TimeUnit.MILLISECONDS)); 

(TimeUnit is "java.util.concurrent.TimeUnit")

~ Answered on 2013-02-25 14:07:14


Most Viewed Questions: