Home | History | Annotate | Download | only in util

Lines Matching refs:MONTH

22  * Helps answer common questions that come up when displaying a month in a
32 // holds current month, year, helps compute display
43 * @param month The month.
46 public MonthDisplayHelper(int year, int month, int weekStartDay) {
55 mCalendar.set(Calendar.MONTH, month);
66 public MonthDisplayHelper(int year, int month) {
67 this(year, month, Calendar.SUNDAY);
76 return mCalendar.get(Calendar.MONTH);
85 * @return The first day of the month using a constants such as
93 * @return The number of days in the month.
103 * the week as Sunday, and the month starts on a Wednesday, the offset is 3.
112 * @return the digits of the month to display in one
113 * of the 6 rows of a calendar month display.
161 * Decrement the month.
164 mCalendar.add(Calendar.MONTH, -1);
169 * Increment the month.
172 mCalendar.add(Calendar.MONTH, 1);
177 * @return Whether the row and column fall within the month.
197 // helper method that recalculates cached values based on current month / year
202 mCalendar.add(Calendar.MONTH, -1);
204 mCalendar.add(Calendar.MONTH, 1);