How To Check Dst Or Daylight Saving Time Is On Or Off In Android Application
Can anybody tell how to check DST or Day Light Saving Time is on or off in android application Thanks
Solution 1:
This will give you the current DST offset. If the result is not 0, DST is active.
int dstOffset = Calendar.getInstance().get(Calendar.DST_OFFSET);
Post a Comment for "How To Check Dst Or Daylight Saving Time Is On Or Off In Android Application"