Home | History | Annotate | Download | only in app

Lines Matching refs:MONTH

46     private static final String MONTH = "month";
63 * @param monthOfYear The month that was set (0-11) for compatibility
65 * @param dayOfMonth The day of the month that was set.
74 * @param monthOfYear The initial month of the dialog.
100 * @param monthOfYear The initial month of the dialog.
124 public void onDateChanged(DatePicker view, int year, int month, int day) {
125 mDatePicker.init(year, month, day, this);
126 updateTitle(year, month, day);
157 * @param monthOfYear The date month.
158 * @param dayOfMonth The date day of month.
164 private void updateTitle(int year, int month, int day) {
167 mCalendar.set(Calendar.MONTH, month);
190 state.putInt(MONTH, mDatePicker.getMonth());
199 final int month = savedInstanceState.getInt(MONTH);
201 mDatePicker.init(year, month, day, this);