Android Utililty Methods Daylight Check

List of utility methods to do Daylight Check

Description

The list of methods to do Daylight Check are organized into topic(s).

Method

booleanisInDayLight()
is In Day Light
Date date = Calendar.getInstance().getTime();
TimeZone tz = TimeZone.getDefault();
return tz.inDaylightTime(date);