Home | History | Annotate | Download | only in app

Lines Matching refs:DAY

44     private static final String DAY = "day";
66 * @param dayOfMonth The day of the month that was set.
76 * @param dayOfMonth The initial day of the dialog.
93 * @param dayOfMonth The initial day of the dialog.
149 int month, int day) {
150 updateTitle(year, month, day);
160 private void updateTitle(int year, int month, int day) {
163 mCalendar.set(Calendar.DAY_OF_MONTH, day);
172 state.putInt(DAY, mDatePicker.getDayOfMonth());
181 int day = savedInstanceState.getInt(DAY);
182 mDatePicker.init(year, month, day, this);
183 updateTitle(year, month, day);