I am getting the timezone of a android device using this code
TimeZone tz = TimeZone.getDefault();
String current_Time_Zone = (TimeZone.getTimeZone(tz.getID()).getDisplayName(
false, TimeZone.SHORT))
But it always return me the timezone like "IST" but i want to get the timezone in GMT like this GMT+7:00.
Please help me, Thanks.
