Home | History | Annotate | Download | only in datepicker

Lines Matching refs:MONTH

50     private static final String MONTH = "month";
71 * @param monthOfYear The month that was set (0-11) for compatibility
73 * @param dayOfMonth The day of the month that was set.
82 * @param monthOfYear The initial month of the dialog.
98 * @param monthOfYear The initial month of the dialog.
118 * @param monthOfYear The initial month of the dialog.
136 * @param monthOfYear The initial month of the dialog.
181 public void onDateChanged(DatePicker view, int year, int month, int day) {
182 updateTitle(year, month, day);
192 private void updateTitle(int year, int month, int day) {
195 calendar.set(Calendar.MONTH, month);
206 state.putInt(MONTH, mDatePicker.getMonth());
216 int month = savedInstanceState.getInt(MONTH);
219 mDatePicker.init(year, month, day, yearOptional, this);
220 updateTitle(year, month, day);