Possible duplicate:
Why is January month 0 in the Java calendar?
It seems that the calendar in android makes the month start at 0. Why should it be designed like this?
final Calendar c = Calendar.getInstance();
mMonth = c.get(Calendar.MONTH);
Today mMonth is 4.
source
share