Calculate month between two dates android
If you want to calculate age in month you can use this method . In this method pass dob year,dob month & dob date. public int monthsBetweenDates(int year, int month, int day) { Calendar dob = Calendar.getInstance(); dob.set(year, month, day); Calendar today = Calendar.getInstance(); int monthsBetween = 0; int dateDiff = today.get(Calendar.DAY_OF_MONTH) – dob.get(Calendar.DAY_OF_MONTH); if […]
Continue Reading