Home | History | Annotate | Download | only in app

Lines Matching refs:MONTH

46     private static final String MONTH = "month";
67 * @param monthOfYear The month that was set (0-11) for compatibility
69 * @param dayOfMonth The day of the month that was set.
78 * @param monthOfYear The initial month of the dialog.
95 * @param monthOfYear The initial month of the dialog.
134 /* Sometimes the full month is displayed causing the title
152 int month, int day) {
153 updateTitle(year, month, day);
163 private void updateTitle(int year, int month, int day) {
165 mCalendar.set(Calendar.MONTH, month);
174 state.putInt(MONTH, mDatePicker.getMonth());
183 int month = savedInstanceState.getInt(MONTH);
185 mDatePicker.init(year, month, day, this);
186 updateTitle(year, month, day);