Example usage for android.util MonthDisplayHelper getRowOf

List of usage examples for android.util MonthDisplayHelper getRowOf

Introduction

In this page you can find the example usage for android.util MonthDisplayHelper getRowOf.

Prototype

public int getRowOf(int day) 

Source Link

Usage

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;
}