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