Home | History | Annotate | Download | only in app

Lines Matching refs:dayOfMonth

85      * @param dayOfMonth the initially selected day of month (1-31, depending
89 int year, int month, int dayOfMonth) {
90 this(context, 0, listener, null, year, month, dayOfMonth);
104 * @param dayOfMonth the initially selected day of month (1-31, depending
108 @Nullable OnDateSetListener listener, int year, int monthOfYear, int dayOfMonth) {
109 this(context, themeResId, listener, null, year, monthOfYear, dayOfMonth);
114 int monthOfYear, int dayOfMonth) {
129 dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH);
133 mDatePicker.init(year, monthOfYear, dayOfMonth, this);
150 public void onDateChanged(@NonNull DatePicker view, int year, int month, int dayOfMonth) {
151 mDatePicker.init(year, month, dayOfMonth, this);
197 * @param dayOfMonth the day of month (1-31, depending on month)
199 public void updateDate(int year, int month, int dayOfMonth) {
200 mDatePicker.updateDate(year, month, dayOfMonth);
240 * @param dayOfMonth th selected day of the month (1-31, depending on
243 void onDateSet(DatePicker view, int year, int month, int dayOfMonth);