I found the DST information of TZ DB is incorrect.
Here is an example.

String strTZ = "Asia/Taipei";
TimeZone tz = TimeZone.getTimeZone(strTZ);
Log.d("wc", strTZ + " UTC=" + tz.getRawOffset() / 1000 + " DST=" +
tz.useDaylightTime());

The output is

Asia/Taipei UTC=28800 DST=true

As we know, there is no DST rule for Taipei this year.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to