List of usage examples for android.util MonthDisplayHelper getRowOf
public int getRowOf(int day)
From source file:Main.java
/** * Get the number of rows for the provided month * @param year year//from ww w . j a v a 2 s . c o m * @param month month * @return number of rows */ public static int getNumOfRowsForTheMonth(int year, int month, int startDayOfTheWeek) { Calendar cal = Calendar.getInstance(); cal.set(year, month, 1); MonthDisplayHelper displayHelper = new MonthDisplayHelper(year, month, startDayOfTheWeek); return displayHelper.getRowOf(cal.getActualMaximum(Calendar.DAY_OF_MONTH)) + 1; }