Home | History | Annotate | Download | only in app

Lines Matching refs:MONTH

43     private static final String MONTH = "month";
60 * @param monthOfYear The month that was set (0-11) for compatibility
62 * @param dayOfMonth The day of the month that was set.
71 * @param monthOfYear The initial month of the dialog.
87 * @param monthOfYear The initial month of the dialog.
120 int month, int day) {
121 mDatePicker.init(year, month, day, this);
122 updateTitle(year, month, day);
138 * @param monthOfYear The date month.
139 * @param dayOfMonth The date day of month.
159 private void updateTitle(int year, int month, int day) {
162 mCalendar.set(Calendar.MONTH, month);
185 state.putInt(MONTH, mDatePicker.getMonth());
194 int month = savedInstanceState.getInt(MONTH);
196 mDatePicker.init(year, month, day, this);